Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

algorithme pour afficher table de multiplication python

i = 1
while i <= 20:
   nb = 1
   while nb <= 20:
      print(i*nb, end = " ")
      nb = nb + 1
   print("")
   i = i + 1
Source by www.developpez.net #
 
PREVIOUS NEXT
Tagged: #algorithme #pour #afficher #table #de #multiplication #python
ADD COMMENT
Topic
Name
9+3 =