day1/exercise/even_perfect_4a.py
author Shantanu <shantanu@fossee.in>
Wed, 28 Oct 2009 15:17:39 +0530
changeset 220 15306dad3b81
parent 94 8c92864c184b
child 380 669b72283b55
permissions -rw-r--r--
Corrections to day1 Session1, day2 Session 3 and 4.

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