day1/exercise/pyramid1.py
author Shantanu <shantanu@fossee.in>
Fri, 20 Nov 2009 00:34:18 +0530
changeset 321 8bf99f747817
parent 64 333092b68926
permissions -rw-r--r--
Modified cheat sheet of session 1 day 2.

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