Python中的for循环

for循环的格式

for 临时变量 in 列表或字符串等: 满足条件时执行的代码 else: 不满足条件时执行的代码

举例说明
import timeplay = "ssamba"for temp in play: print("%S"%temp) time.sleep(1)

注意:for语法中in后面往往跟的是一个可以容纳多个数据的变量对象,比如列表元组字典字符串。
错误例子
import timefor temp in 100: print("%S"%temp) time.sleep(1)

【Python中的for循环】最后结果会有这么一个报错信息:TypeError: 'int' object is not iterable

    推荐阅读