Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

number table python

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

for i in range (1,11):
    c = a*i
    print(a,"X",i,"=",c)
 
PREVIOUS NEXT
Tagged: #number #table #python
ADD COMMENT
Topic
Name
8+9 =