Write a python function to create multiplication table from the user provided number
Topic: Write a python function to create multiplication table from the user provided number
Solution
def multiplication_table(n): for i in range(1,11): print(n,'x',i,'=',n*i)
List all Python Programs