Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /home/u797631661/domains/codermantra.com/public_html/wp-content/plugins/quiz-maker/includes/class-quiz-maker-data.php on line 1199

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the quiz-maker domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/u797631661/domains/codermantra.com/public_html/wp-includes/functions.php on line 6121
S. Shekhar – Page 8 – CoderMantra

Python – Operators

In Python, operators are symbols and used to perform a specific operation on given values. Python has a rich collection of operators, we will learn here. Types of Operators in Python Arithmetic Operators Assignment Operators Relational Operators Logical Operators Bitwise Operators Membership Operators Identity Operators Arithmetic Operators (Mathematical Operators) Arithmetic or Mathematical operators in Python…

Read More »

Python – Data Types

In the previous chapter, we had learned about variables. In this tutorial, we will discuss data types in Python language. In Python programming, data types are inbuilt and need not declare the type of a variable. Everything in Python is an object, so data types are classes and variables are known as an object. Numeric…

Read More »

Python – Variable

In this tutorial, we will learn about variables in Python. we will also discuss to define a variable, assign a value to variables in Python. What is Variable: In Python, variables are a memory location. It can store values like numbers and text. The value of a variable can be changed. The variable is always…

Read More »

Python – First Program

In this tutorial, we will learn how to run the first python program using scripting mode. We will also discuss comments in python. So far you have learned to install python and IDLE, to start your first program, you need to search and open IDLE in your PC. Now from python shell, select New from…

Read More »

Python – First Step

We will learn here how to write and run python programs. Before you start, you should have Python installed on your computer. Install Python and IDLE Python comes pre-installed with Ubuntu and Mac OS, but it does not come pre-installed with the Windows operating system. You need to download and install manually from the official…

Read More »

C File Handling

We have learned lots of things in c programming, accept user input, execute, and print results on the terminal(output) window. But results are not store permanently, to store data for future reference we are using file handling in c language. Now, instead of accepting input and printing results from the terminal, we will use a…

Read More »

Structure in C

A structure in c programming is a collection of one or more variables of different types. The structure in c tutorial will teach you how to declare a structure, an array of structure, pointer structure, nested structure and how to access an element of a structure. Structure: Key Points structure can store more than one…

Read More »

Function in C

The function in c language tutorial, we will teach you how to declare a function, define function and call function in c programming. Suppose you are creating an application, and you need to repeat some code regularly. Instead of writing, again and again, you can create a function and call it whenever required. What is…

Read More »