write a python program to print the multiplication table of 4
Answers
Answered by
9
table = 4
for i in range(1, 11):
print(table, "X", i, "=", table*i)
Similar questions