write a python program to print the multiplication table of 4
I will mark as brainliest please say right answer
Answers
Answered by
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