Python 常用术语
for循环不能为空,但是如果出于某种原因,for循环不包含任何内容,需要使用pass语句,可以避免执行报错。
for
pass
例如:
for x in [0, 1, 2]: pass
相关文档:
Python for循环教程
Python for循环
Python for循环遍历字符串
Python for break语句
Python for continue语句
Python for循环使用range()函数
Python for 循环中的else
Python for循环嵌套
Python for循环中的pass