write a python program to print the table of 4
Answers
Answered by
6
Answer:
num = int(input("Show the multiplication table of? "))
# using for loop to iterate multiplication 10 times.
for i in range(1,11):
print(num,'x',i,'=',num*i)
Explanation:
ɧơ℘ɛ ıɬ ɧɛƖ℘ʂ ყơų
Answered by
4
Answer:
Similar questions
Physics,
1 month ago
Math,
1 month ago
English,
3 months ago
English,
9 months ago
Psychology,
9 months ago