I need the function to display a square of numbers. This is the actual function.
def draw(n):
for i in range(n+1):
print i*(n)
but if i call the function
def drawBlock(3):
then the output should be
333
222
111
but i cant understand how to get the numbers displayed three times. I get either just get the range or it multiplies "i" with n?