Answers for "number table python"

1

number table python

a = int(input("enter your number: "))

for i in range (1,11):
    c = a*i
    print(a,"X",i,"=",c)
Posted by: Guest on January-28-2022

Code answers related to "number table python"

Python Answers by Framework

Browse Popular Code Answers by Language