python if x is greater than or less than code example
Example 1: how to do more than or less than as a condition in pythonb
var1 = 3
var2 = 2
if var1 > var2:
print('3 is more than 2')
if var2 < var3:
print('2 is less than 3')
Example 2: compare int in Python
1 == 2
#OR
1 is 2