conditionals.py 144 B

123456789
  1. #!/usr/bin/env python3
  2. # Copyright 2009-2017 BHG http://bw.org/
  3. x = 12
  4. y = 42
  5. if x < y:
  6. print('x < y: x is {} and y is {}'.format(x, y))