一月7日

range(10) 什么意思呢? 自动生成 1 ~ 10 的数组
for i in range(10):
print(i)

可以精确
for i in range(-1,10):
  print(i)
原文地址:https://www.cnblogs.com/zxpnb/p/14245344.html