day1/exercise/pyramid1.py
author Shantanu <shantanu@fossee.in>
Tue, 22 Dec 2009 14:10:37 +0530
changeset 330 46533051b9d3
parent 64 333092b68926
permissions -rw-r--r--
commited changes made for scipy and cheatsheats.

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