Found 33676 Articles for Programming

Refresh a Page Using PHP

Pradeep Kumar
Updated on 02-Aug-2023 12:17:29

5K+ Views

What is PHP? PHP, which stands for Hypertext Preprocessor, is a popular server-side scripting language used for web development. It is designed to create dynamic and interactive web pages. PHP is embedded within HTML code and executed on the server, generating HTML output that is sent to the client's browser. With its simple and easy-to-learn syntax, PHP allows developers to build dynamic websites, handle form data, interact with databases, and perform various server-side tasks. It has a vast ecosystem of libraries and frameworks that enhance its functionality and enable developers to create robust and scalable web applications. PHP is ... Read More

Python program to concatenate all Elements of a List into a String

Niharika Aitam
Updated on 02-Aug-2023 12:17:23

743 Views

List is one of mutable data structure available in python which is used to store the data of any datatype. It is denoted with the square braces "[]" and all the elements in the list are separated by comma. When we want to access an element from the list, indexing will be applied. In the same way we have the string data structure which is immutable and stores the data in the string datatype. The string is given as double quotes or single quotes. The indexing will be applied to access the elements from the string. Now in this article ... Read More

Python program to compute arithmetic operation from String

Niharika Aitam
Updated on 02-Aug-2023 11:46:33

553 Views

Arithmetic operations are the mathematical calculations on numeric data types. The following are the arithmetic operations allowed in python. Addition (+) Subtraction (-) Multiplication (*) Division (/) Floor Division (//) Modulo (%) Exponentiation (**) There are several ways to compute arithmetic operation from string. Let’s see them one by one. Using the eval() Function The eval() function in Python evaluates an expression passed as a string and returns the result. We can use this function to compute arithmetic operations from a string. Example In this approach, the eval() function evaluates the expression "2 + 3 * 4 - ... Read More

Python program to check whether the values of a dictionary are in same order as in a list

Niharika Aitam
Updated on 02-Aug-2023 11:44:29

179 Views

Dictionary is the mutable data structure in python, which allows the user to store the data in the format of key and value. The key and value are separated by using the symbol ":". The keys are unique and the values can be repeated. The values can be given as a single element or multiple elements within a list. If we want to access the elements from a dictionary we have to use the key. It provides various functions and methods to work and manipulate the dictionaries. There are several approaches to check whether the values of a dictionary are ... Read More

Python Program to check whether Characters of all string elements are in lexical order or not

Niharika Aitam
Updated on 02-Aug-2023 11:43:59

142 Views

Lexical order refers to the order of characters or strings based on their dictionary or alphabetical order. In lexical order, characters are arranged in the same way they would be in a dictionary. The comparison is done based on the numerical values of the characters in their respective character sets such as ASCII or Unicode. In lexical order, characters are compared based on their ASCII or Unicode values from left to right. The character with a lower ASCII or Unicode value comes before the one with a higher value. For example, in ASCII order, 'a' comes before 'b', 'b' comes ... Read More

PHP Program to Generate the Random Number in the given Range (min, max)

Pradeep Kumar
Updated on 02-Aug-2023 11:39:52

732 Views

What Is PHP ? PHP (Hypertext Preprocessor) is a widely-used open-source scripting language primarily designed for web development. It is a server-side scripting language that is embedded within HTML, allowing developers to create dynamic web pages and interactive web applications. PHP is known for its flexibility, simplicity, and extensive support, making it a popular choice among developers for building robust and scalable websites. It offers a vast range of functionalities and features, including database connectivity, file manipulation, session management, and form handling. PHP code is executed on the server, generating HTML output that is then sent to the client's ... Read More

What are the different plots available in the Seaborn?

Niharika Aitam
Updated on 02-Aug-2023 11:40:13

219 Views

Seaborn is a powerful data visualization library in Python that builds on top of Matplotlib. It provides a high-level interface for creating attractive and informative statistical graphics. It offers a variety of plot types to explore and visualize data effectively. The below are the different plots available in Seaborn which helps the user to visualize the data. Scatter Plot A scatter plot is used to display the relationship between two numeric variables. In seaborn we have a function namely scatterplot() which creates a scatter plot with optional additional features such as coloring and marker size based on other variables. Line ... Read More

PHP Program to Find the Number Occurring Odd Number of Times

Pradeep Kumar
Updated on 02-Aug-2023 11:36:51

229 Views

What is PHP? PHP (Hypertext Preprocessor) is a widely used server-side scripting language for web development. It allows developers to embed code within HTML files, enabling the creation of dynamic web pages and interactions with databases. PHP is known for its simplicity, versatility, and extensive integration capabilities with popular databases. It offers a broad range of extensions and has a large community of developers, ensuring ample resources and support. PHP Program to Find the Number Occurring Odd Number of Times The concept of "Number Occurring Odd Number of Times" refers to finding a number in an array that ... Read More

Introduction to pyglet library for game development in Python

Niharika Aitam
Updated on 02-Aug-2023 11:39:42

576 Views

Pyglet is a powerful library for game development and multimedia applications in Python. It provides an easy-to-use interface for creating games, handling graphics, playing audio, and handling user input. It is built on top of the OpenGL library, which allows for high-performance graphics rendering. The following steps to be followed while developing a game using the pyglet library. Installation We can install Pyglet using pip by running the following command in the python environment. Example pip install pyglet Output Collecting pyglet Downloading pyglet-2.0.7-py3-none-any.whl (841 kB) -------------------------------------- 841.0/841.0 kB 2.0 MB/s eta ... Read More

Python program to build flashcard using class in python

Niharika Aitam
Updated on 02-Aug-2023 11:38:55

778 Views

Generally, a flashcard is a learning tool that consists of a small card or piece of paper with information printed on one side. These are commonly used to aid in memorization and learning of facts, vocabulary, definitions, equations, or any other type of information that can be presented in a question-and-answer format. With the advancement of technology, flashcards have also been adapted into digital formats, such as mobile apps and online platforms, which provide additional features like multimedia content, spaced repetition algorithms, and progress tracking. There different approaches available in python to build the flash cards, let’s go through each ... Read More

Advertisements