📜  python代码示例中的范围

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

代码示例6
#range(start,stop,step)
for x in range(0,20,2):
  print(x)