python——for循环

# for循环
for i in range(10):
    print(i)

结果:

0
1
2
3
4
5
6
7
8
9
原文地址:https://www.cnblogs.com/ly123456/p/12251296.html