yazdmich

If statements

Mar 22nd, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.53 KB | None | 0 0
  1. class MyClass:
  2.     good = True
  3.     pi = 3.14
  4.     tau = 6.28
  5.     bad = False
  6.  
  7. spam = MyClass()
  8.  
  9. def the_flying_circus():
  10.     # Start coding here!
  11.     if spam.good == True:
  12.         if spam.pi == spam.tau / 2 and spam.pi == 3.14:
  13.             if False or not False and True == False:
  14.                 if 3 < 4 and 3**2 + 1 <= 10 - 1 - 1 + 2:
  15.                     if 19 >= 9*3:
  16.                         c = spam.tau
  17.                     elif 19 != 2:
  18.                         c = spam.pi
  19.             else:
  20.                 return True
Advertisement
Add Comment
Please, Sign In to add comment