Computer Science, asked by jiyagodhwani101, 4 months ago

write a python program to print the multiplication table of 4

I will mark as brainliest please say right answer​​

Answers

Answered by reevasolanki
2

n=int(input('Please enter a positive integer between 1 and 15: '))

for row in range(1,n+1):

for col in range(1,n+1):

print(row*col)

print()

This correctly multiplies everything but has it in list form. I know I need to nest it and space properly, but I'm not sure where that goes?

mark me as a brainlist

Similar questions