mixster

mixster

Oct 30th, 2010
425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. if (a == 2):
  2.   dothis()
  3. elif (a == 3):
  4.   dothat()
  5.  
  6. if (a == 2):
  7.   dothis()
  8. else:
  9.   if(a == 3):
  10.     dothat()
  11.  
  12. or
  13.  
  14. if (a == 2):
  15.   dothis()
  16. else if (a == 3):
  17.   dothat()
Add Comment
Please, Sign In to add comment