#programme to print the multiplication table of a given no....
plz tell me answer......it's urgent.......
don't tell any ridiculous answer....
Answers
Answered by
2
- To print multiplication table we need to iterate from 1 to 10. Run a loop from 1 to 10 , increment 1 on each iteration. The loop structure should look like for(i=1; i<=10; i++) . Inside loop generate multiplication table using num * i and print in specified format..
Answered by
5
Answer:
print('Program to print multiplication table')
n=int(input("Enter the no. whose table you want to print :-"))
for a in range (1,11):
print(n,'x',a,"=",n*a)
Thankyou : )
FOLLOW ME IF YOU WANT ANSWERS LIKE THIS
Similar questions