Computer Science, asked by aksharagraphics2009, 1 year ago

Write a program to print X table of given number output as follows 1*5=5 2*5=10

Answers

Answered by prakhargurunani
0

x = 1

def main():

   if x <= 10:

       y = 5

       z = x * 5

       print(\n z)

       x += 1

while True:

   main()


prakhargurunani: This is a python program
prakhargurunani: Install python from python org. Save the above code as a .pyc file and then open the file.
Similar questions