day1/exercise/pyramid1.py
author Prabhu Ramachandran <prabhu@aero.iitb.ac.in>
Mon, 14 Jun 2010 20:16:05 -0400
branchscipy2010
changeset 399 7775af81b51a
parent 64 333092b68926
permissions -rw-r--r--
Initial checkin of file with details of the plan for the tutorial.

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