day1/exercise/even_perfect_4a.py
author Santosh G. Vattam <vattam.santosh@gmail.com>
Wed, 11 Nov 2009 12:26:07 +0530
changeset 301 49bdffe4dca5
parent 94 8c92864c184b
child 380 669b72283b55
permissions -rw-r--r--
Updated session 2 slides of day 1 and added cheatsheets of day 2.

def all_digits_even(n):
    if n < 0: n = -n
    while n > 0:
        if n % 2 == 1:
            return False
        n /= 10
    return True

i = 46
while i <= 94:
    square = i * i
    if all_digits_even(square):
        print square
    i += 1