python function if code example
Example 1: python if statement
usrinput = input(">> ")
if usrinput == "Hello":
print("Hi")
elif usrinput == "Bye":
print("Bye")
else:
print("Okay...?")
Example 2: python if
if num==5:
print("Num equal to 5")
elif num > 5:
print("Num more than 5")
else:
print("Num smaller than 5 but not equal to 5")
Example 3: 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 4: python if ?
a,b=5,7
x = a > b ? 10 : 11