conditional.py 162 B

123456789
  1. #!/usr/bin/env python3
  2. # Copyright 2009-2017 BHG http://bw.org/
  3. if True:
  4. print('if true')
  5. elif False:
  6. print('elif true')
  7. else:
  8. print('neither true')