Skip to content

Instantly share code, notes, and snippets.

@DeBomb123
Last active December 14, 2015 12:29
Show Gist options
  • Save DeBomb123/5086975 to your computer and use it in GitHub Desktop.
Save DeBomb123/5086975 to your computer and use it in GitHub Desktop.
What is wrong with this?
def by_three(n):
if n % 3 == 0:
return n
else:
return False
def cube(n):
return n**3
by_three(9)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment