Ads block
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 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 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 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 »
Conditional Statements
Conditional Statements Conditional statements help in making a decision based on certain conditions. These conditions are specified by a set of cond…
Read more »
Introduction to Python
Python Introduction Python is a general purpose and high level programming language. Python is a popular programming language. It was created by "Guido …
Read more »
Type Conversion in Python
Type Conversion The process of converting the value of one data type into another data type is called type conversion. There are mainly …
Read more »
SEARCH
LATEST
3-latest-65px
SECCIONS
Search This Blog
Powered by Blogger.
Blog Archive
- July 2023 (1)
- January 2023 (4)
- December 2022 (1)
- May 2022 (1)
- December 2021 (4)
- November 2021 (12)
- October 2021 (2)
- August 2021 (1)
- July 2021 (19)
- June 2021 (5)
- May 2021 (29)
- April 2021 (11)
- March 2021 (3)
Operators in C
Operators An operator is a symbol that tells the compiler to perform specific mathematical or logical operations, based on the value provi...