insert if statement in for loop makefile code example
Example 1: how to write a while statement in python
myvariable = 10
while myvariable > 0:
print(myvariable)
myvariable -= 1
Example 2: if else statement with multiple conditions python
if( (5 ** 2 >= 25) and (4 * 2 < 8) or (35 / 7 > 4) ):
print("Booleans make If more powerful!")