day1/exercise/even_perfect_4a.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Sun, 11 Oct 2009 16:51:43 +0530
changeset 94 8c92864c184b
child 380 669b72283b55
permissions -rw-r--r--
Almost last set of official solutions and final quiz.

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