Title:: Write A Python Program To Understand If, If Elif Else, For Loop, While Loop, Break and Continue Statements
Title:: Write A Python Program To Understand If, If Elif Else, For Loop, While Loop, Break and Continue Statements
Title : Write a python program to understand if , if elif else , for loop , while
loop ,break and continue statements.
# Demonstrating if statement
x = 10 if x > 5:
print("x is greater than 5") Output:
#output
x is greater than 5
===========================================================
Enter a number: 3
Positive number
===========================================================
# Demonstrating for loop
print("For loop example:")
for i in range(5):
print(i)
# Output: For
loop example:
0
1
2
3
4
===========================================================
loop example:
0
1
2
3
4
===========================================================
=
# Demonstrating break
print("Break statement example:")
for i in range(10): if i == 5:
break
print(i)
Output: Break
statement example:
0
1
2
3
4
===========================================================
=
# Demonstrating continue
print("Continue statement example:")
for i in range(5): if i == 2:
continue print(i)
#Output:
Continue statement example:
0
1
3
4
===========================================================
=