判断一个对象是不是可迭代对象:
from collections import Iterable isinstance(list(range(100)), Iterable) isinstance('Say YOLO Again.')
列表: