Write a program to print X table of given number output as follows 1*5=5 2*5=10
Answers
Answered by
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
Similar questions