for 循环
同 while 一样,for 循环可以用来重复做一件事情。它的本质是对一个序列中的元素进行递归。
在线运行演示代码
参考教程
count = 0 for i in range(1, 11): print(i) count += 1 print('count:', count)