if statement python code example
Example 1: if statement python
#a statement that checks if a condition is correct
#example:
x=5
if x == 5:
print("x is 5")
else:
print("x is not 5")
Example 2: if statement python
a = 11
b = 46
if a < b:
print('a is less than b')
else:
print('a is greater than b')
Example 3: if statement python
if (condition):
result
else:
result
Example 4: if statement python
x=1; y=0; z=0;
if x==1 or y==0:
if z=0 and x=1:
print('Useless conditions satisfed!')
Example 5: if statement python
x=1; y=0; z=0;
if 1 in {x,y,z}:
print('At least one variable is equal to 1')
Example 6: if statement python
number = 5
if number == 5:
print("number equals 5")
else:
print("number does not equal 5")
Example 7: if statement python
x = int(input("number: ")) # get number from user
if x < 0:
print(f"{x} is less than 0!") # if x is less than 0, print x is less than 0
elif x == 0:
print(f"{x} is equal to 0!") # if x is equal to 0 then print x is equal to 0
if x > 0:
print(f"{x} is more than 0!") # if x is greater than 0 print x is more than 0
# yeah its me somewhatoriginal
Example 8: if statement python
a = 33
b = 200
if b > a:
print("b is greater than a")