Skip to content

Instantly share code, notes, and snippets.

@pexceful
Created January 19, 2017 03:16
Show Gist options
  • Save pexceful/60af838de1a68f3b579d03255bf5f61c to your computer and use it in GitHub Desktop.
Save pexceful/60af838de1a68f3b579d03255bf5f61c to your computer and use it in GitHub Desktop.
# Make sure that the_flying_circus() returns True
def the_flying_circus():
if True and True:
Return True
elif 9 != 9:
Return False
else:
Return "Nothing!"
@OmgImAlexis
Copy link

# Make sure that the_flying_circus() returns True
def the_flying_circus():
    if True:
        return True
    elif 9 != 9:
        return False
    else:
        return "Nothing!"
        

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment