Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to print tables using python

please subscribe my channel - https://bit.ly/2Me2CfB

t = int(input("ENTER THE NUMBER : "))
for i in range(1, 11):
  b  = t * i
  print(f"{t} x {i} = {b}")
 
PREVIOUS NEXT
Tagged: #print #tables #python
ADD COMMENT
Topic
Name
8+2 =