Computer Science, asked by hsmohd20, 3 months ago

write a program to print multiplication table of 5

Answers

Answered by atulkumargpt
1

Answer:

# python program

for i in range(1, 11):print(f"5 x {i} = ",5*i)

Similar questions