Skip to content

Instantly share code, notes, and snippets.

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