day1/exercise/collatz.py
author Puneeth Chaganti <punchagan@fossee.in>
Thu, 15 Oct 2009 15:50:55 +0530
changeset 127 44c2f614e321
parent 64 333092b68926
child 354 5dc6c3673f9d
permissions -rw-r--r--
Updated Integration section in Session 4.

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