day1/exercise/collatz.py
author Shantanu <shantanu@fossee.in>
Sat, 31 Oct 2009 01:33:12 +0530
changeset 261 9cce24d00957
parent 64 333092b68926
child 354 5dc6c3673f9d
permissions -rw-r--r--
1 quiz, seesion5 plots, added links to reference.

a = -1
while a > 1:
    print a
    if a % 2:
        a = a * 3 + 1
    else:
        a /= 2