Computer Science, asked by lakshita2891, 4 months ago

write a program in python to print tables of 7​

Answers

Answered by skillfulla5
4

Answer:

In Python, you can make a program to display the multiplication table of any number.

...

Python Program to Display the multiplication Table

num = int(input("Show the multiplication table of? "))

# using for loop to iterate multiplication 10 times.

for i in range(1,11):

print(num,'x',i,'=',num*i)

Explanation: mark brainliest

Similar questions