Skip to content

Instantly share code, notes, and snippets.

Created May 28, 2017 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/5314cb1af8e0f312e3db90f0da22d445 to your computer and use it in GitHub Desktop.
Save anonymous/5314cb1af8e0f312e3db90f0da22d445 to your computer and use it in GitHub Desktop.
def collatz(number):
if number % 2 == 0:
print((number // 2))
return number / 2
if number % 2 == 1:
print(3 * number +1)
return 3 * number +1
collatz(int(input('pick a number')))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment