write a program to print multiplication table of 5
Answers
Answered by
1
Answer:
# python program
for i in range(1, 11):print(f"5 x {i} = ",5*i)
Similar questions