迭代器字符串、列表、元组、字典、集合都可以被for循环,说明他们都是可迭代的
from collections import Iterable
l = [1, 2, 3, 4]
t = (1, 2, 3, 4)
d = {1:
2019-01-30