📜  使用 while 循环打印前 10 个自然数 - Python 代码示例

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

代码示例1
i=0
while i<=10:
  print(i)
  i+=1