day1/exercise/even_perfect_4.py
author Christopher Burns <chris.d.burns@gmail.com>
Mon, 28 Jun 2010 23:52:18 -0500
branchscipy2010
changeset 429 58a2d1766197
parent 64 333092b68926
child 430 f97ecb4e04a9
permissions -rw-r--r--
DOC: Add a few slides on namespaces and imports.

def is_perfect_square(n):
    i = 1
    while i * i < n:
        i += 1
    return i * i == n

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

for i in range(2222, 8888):
    if all_digits_even(i) and is_perfect_square(i):
        print i