暂无 |

循环-for-2

for循环通常用于重复一定次数的一些代码。这是通过结合具有范围对象的循环来完成的。

for i in range(5):
  print("hello!")

结果:
>>>
hello!
hello!
hello!
hello!
hello!
>>>
当在for循环中使用时,不需要调用范围对象的列表,因为它没有被索引,所以不需要列表。

1

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论