Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. def the_flying_circus():
  2. if 10*10==100:
  3. return True
  4. print ("wow this is amazing!") # Start coding here!
  5. # Don't forget to indent
  6. # the code inside this block!
  7. elif 15*20!=100 and not 20>10:
  8. return False
  9. print ("the circus is alright i guess")
  10. # Keep going here.
  11. # You'll want to add the else statement, too!
  12. else:
  13. print ("circus is for pussies")
  14.  
  15. the_flying_circus()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement