create a program to print the multiples of 6 and their sum (in the range 1 to 20) python
Answers
Answered by
0
Answer:
num = int(input("Enter the number: "))
print("Multiplication Table of", num)
for i in range(1, 11):
print(num,"X",i,"=",num * i)
Explanation:
hope it helps please please maek it as brainlist answer
Similar questions