blocks.py 143 B

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