day1/exercise/pyramid1.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 14 Oct 2009 12:43:21 +0530
changeset 112 24992ab48f2b
parent 64 333092b68926
permissions -rw-r--r--
Created the pristine form of the repository for Goa workshop.

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