day1/exercise/pyramid1.py
author Shantanu <shantanu@fossee.in>
Tue, 27 Oct 2009 19:29:10 +0530
changeset 207 545c7bb07e68
parent 64 333092b68926
permissions -rw-r--r--
Mergerd the branches.

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