Ads block

Banner 728x90px

Loop in Python


Loop in Python
Python Loops        A loop is a programming structure that repeats a sequence of instructions until a specific condition is met. A loop statement in Python a…
Read more »

Float Representation in Python


Floating Point Representation                The float type in Python represents the floating-point number. Float is used to represent real number and is wr…
Read more »

Expression Evaluation


Expression Evaluation            A Python program contains one or more statements . A statement contains zero or more expressions . Python executes by evalua…
Read more »

Pass Statement


Pass Statement         In Python, the pass keyword is used to execute nothing ; it means, when we don't want to execute code, the pass can be used to exe…
Read more »

Nested If Statement


Nested If Statement
Nested-If       You can have if statements inside another if statement , this is called nested if statements. An if statement present inside another if sta…
Read more »

Elif Statement


Elif Statement
Elif Statement         Sometimes there are more than two possibilities, in that case we can use the elif statement. It stands for "else-if" which m…
Read more »

If-else Statements


If-else Statements
If-else statement      An if statement can be followed by an optional else statement. An else statement contains the block of code that executes if the condi…
Read more »