Multiplication table of a number

# Multiplication table of a number

Num = int(input("Enter number : "))

for idx in range(1, 21, 1):
print(idx,"x", Num,"=", (idx*Num))

No comments:

Post a Comment

Don't be a silent reader...
Leave your comments...

Anu