Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

print multiplication table of a number

son=int(input("input:"))
if son>=1 and son<=9:
  for d in range (1,11):
    print(son*d)
else:
  print("Wrong input")
 
PREVIOUS NEXT
Tagged: #print #multiplication #table #number
ADD COMMENT
Topic
Name
8+6 =