Insaan wants to print the multiplication table using a loop . Which loop will he select for the same and why ?
Answers
Answered by
0
“multiplication table of a number using while loop python” Códe Answer
- a=int(input("enter table number"))
- b=int(input("enter the number to which table is to printed"))
- i=1.
- while i<=b:
- print(a,"x",i,"=",a*i)
- i=i+1.
Similar questions