top of page
Search
Rajesh Singh
Apr 3, 20202 min read
What is Built-in functions?
There are following set of built in functions in Python Function Description abs() ...
29 views0 comments
Rajesh Singh
Apr 3, 20201 min read
What is a function in Python?
Function is a group of related statements that perform a specific task in Python. A function is a block of code which only runs when it...
27 views0 comments
Rajesh Singh
Apr 3, 20203 min read
What is Python Operators?
Operators are used to perform operations on variables and values. There are following operators in Python Arithmetic operators Assignment...
28 views0 comments
Rajesh Singh
Apr 1, 20201 min read
Pass Statement in Python
The pass statement acts as a placeholder and frequently used when there is no need of code but a statement is still essential to make a...
16 views0 comments
Rajesh Singh
Apr 1, 20201 min read
Continue Statement in Python with Example
The continue statement is used within a loop to skip the rest of the statements in the body of loop for the current iteration and jump to...
21 views0 comments
Rajesh Singh
Apr 1, 20201 min read
Break Statement in Python with example
The break statement is used to terminate the loop when a certain condition is gathering. The break statement is usually used inside a...
23 views0 comments
Rajesh Singh
Apr 1, 20201 min read
While Loop in Python with example
While loop is used to iterate over a block of code again and again until a given condition returns false. A program is executed...
20 views0 comments
Rajesh Singh
Apr 1, 20202 min read
For Loop in Python with Example
for () loop is a counting loop and repeats its body for a pre-defined number of times. It is a very versatile statement and has many...
22 views0 comments
Rajesh Singh
Apr 1, 20201 min read
Nested If else statement in Python
If statement is within another if statement then this is called nested of control statements. Example num = -100 if num > 0:...
10 views0 comments
Rajesh Singh
Apr 1, 20201 min read
If elif else statement in python with examples
We use the if..elif..else statement when we need to check multiple conditions. Syntax: if condition: statement1 elif condition_2:...
27 views0 comments
Rajesh Singh
Apr 1, 20201 min read
If else Statement in Python with Examples
if statements is execute a certain block of Python code when a particular condition is true. Whenever If..else statements are execute...
15 views0 comments
Rajesh Singh
Apr 1, 20201 min read
If statement in Python with Example
If statements are control flow statements and it is run a particular code only when a condition is satisfied. It means that to print a...
11 views0 comments
Rajesh Singh
Mar 31, 20202 min read
Data Types in Python with examples
The type of the variable is known as Python Data type like integer variable, string variable, tuple, dictionary, list etc. There are two...
26 views0 comments
Rajesh Singh
Mar 31, 20201 min read
What is Python Identifiers?
Variable name is known as identifier. For exam the integer type of variable that has the value 20. Then name of the variable, which is...
4 views0 comments
Rajesh Singh
Mar 29, 20201 min read
What is a Python Keyword?
A python keyword is a known as reserve word which can’t use as a name of your variable, class, function etc. These keywords have a...
6 views0 comments
Rajesh Singh
Mar 29, 20201 min read
Python Variables
Variables are used to store data and take memory space based on the type of value we assigning to them. We create variables in Python is...
15 views0 comments
Rajesh Singh
Mar 29, 20201 min read
What is Python Programming Language?
Python is a well-liked programming language. It was developed by Guido van Rossum in 1991. It is used for web development (server-side),...
27 views0 comments
bottom of page