for循环的格式
for 临时变量 in 列表或字符串等:
满足条件时执行的代码
else:
不满足条件时执行的代码
举例说明
import time
play = "ssamba"
for temp in play:
print("%S"%temp)
time.sleep(1)
注意:for语法中in后面往往跟的是一个可以容纳多个数据的变量对象,比如列表元组字典字符串。
错误例子
import time
for temp in 100:
print("%S"%temp)
time.sleep(1)
最后结果会有这么一个报错信息:TypeError: 'int' object is not iterable