greater and less than in python code example

Example 1: python comparison operators

# Below follow the comparison operators that can be used in python
# == Equal to
42 == 42 # Output: True
# != Not equal to
'dog' != 'cat' # Output: True
# < Less than
45 < 42 # Output: False
# > Greater Than
45 > 42 # Output: True
# <= Less than or Equal to
40 <= 40 # Output: True
# >= Greater than or Equal to
39 >= 40 # Output: False

Example 2: 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')