day1/exercise/even_perfect_4a.py
author Christopher Burns <chris.d.burns@gmail.com>
Tue, 29 Jun 2010 01:40:24 -0500
branchscipy2010
changeset 434 99e1af343b04
parent 380 669b72283b55
permissions -rw-r--r--
DOC: More slides on whitespace.

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 += 2