day1/exercise/pyramid1.py
author Shantanu <shantanu@fossee.in>
Wed, 28 Oct 2009 15:17:39 +0530
changeset 220 15306dad3b81
parent 64 333092b68926
permissions -rw-r--r--
Corrections to day1 Session1, day2 Session 3 and 4.

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