Write a Program that will ask the user for a base number then the program should display the multiplication table of that number up to 12.

n=int(input("Enter base number: "))
for i in range(1, 13):
print(n,'x',i,'=',n*i)
Loops: multiplicationTable.py Write a Program that will ask the user for a base number then the...