Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. # Make sure that the_flying_circus() returns True
  2. def the_flying_circus():
  3.     if 5>3 and 4>3:
  4.         print "la primera"
  5.         # Don't forget to indent
  6.         # the code inside this block!
  7.     elif 3<4:
  8.         print "el 4"
  9.         # You'll want to add the else statement, too!
  10.     else:
  11.         print "yeah"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement