day1/exercise/pyramid1.py
author prabhu@localhost
Fri, 09 Oct 2009 22:57:00 +0530
changeset 93 27b67b50280b
parent 64 333092b68926
permissions -rw-r--r--
ENH: Fixing compile errors and removing CDEEP.

n = input('How many lines? ')
for i in range(1, n + 1):
    for j in range(i):
        print i,
    print