Computer Science, asked by nilimaaj9, 14 days ago

write a python program to print the multiplication table of 4​

Answers

Answered by atrs7391
9

table = 4

for i in range(1, 11):

   print(table, "X", i, "=", table*i)

Similar questions