📌  相关文章
📜  algorithme pour afficher table de multiplication python代码示例

📅  最后修改于: 2022-03-11 14:45:34.805000             🧑  作者: Mango

代码示例1
i = 1
while i <= 20:
   nb = 1
   while nb <= 20:
      print(i*nb, end = " ")
      nb = nb + 1
   print("")
   i = i + 1