Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. if condition_1:
  2.     statement_1()
  3. elif condition_2:
  4.     statement_2()
  5. elif condition_3:
  6.     statement_3()
  7. elif condition_4:
  8.     statement_4()
  9. elif condition_5:
  10.     statement_5()
  11. elif condition_6:
  12.     statement_6()
  13. elif condition_7:
  14.     statement_7()
  15. elif condition_8:
  16.     statement_8()
  17. elif condition_9:
  18.     statement_9()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement