top of page
Search
What is Function Arguments in Python
A function that takes variable number of arguments in Python. Example: def tkd(name,msg): print("Hello",name + ', ' + msg)...

Rajesh Singh
Apr 3, 20202 min read
24 views
0 comments
What is Built-in functions?
There are following set of built in functions in Python Function Description abs() ...

Rajesh Singh
Apr 3, 20202 min read
30 views
0 comments
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...

Rajesh Singh
Apr 3, 20201 min read
30 views
0 comments
What is Python Operators?
Operators are used to perform operations on variables and values. There are following operators in Python Arithmetic operators Assignment...

Rajesh Singh
Apr 3, 20203 min read
29 views
0 comments
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...

Rajesh Singh
Apr 1, 20201 min read
17 views
0 comments


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...

Rajesh Singh
Apr 1, 20201 min read
24 views
0 comments


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...

Rajesh Singh
Apr 1, 20201 min read
23 views
0 comments


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...

Rajesh Singh
Apr 1, 20201 min read
21 views
0 comments


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...

Rajesh Singh
Apr 1, 20202 min read
23 views
0 comments


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:...

Rajesh Singh
Apr 1, 20201 min read
11 views
0 comments


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:...

Rajesh Singh
Apr 1, 20201 min read
28 views
0 comments


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...

Rajesh Singh
Apr 1, 20201 min read
16 views
0 comments
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...

Rajesh Singh
Apr 1, 20201 min read
12 views
0 comments
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...

Rajesh Singh
Mar 31, 20202 min read
27 views
0 comments
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...

Rajesh Singh
Mar 31, 20201 min read
5 views
0 comments
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...

Rajesh Singh
Mar 29, 20201 min read
6 views
0 comments
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...

Rajesh Singh
Mar 29, 20201 min read
16 views
0 comments
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),...

Rajesh Singh
Mar 29, 20201 min read
28 views
0 comments
bottom of page