Python沒有專門的“可迭代類型”,所以需要借助collections庫中的Iterable判斷一個對象是否可迭代。
from collections.abc import Iterable
print(isinstance([1,2,3,4],Iterable))
print(isinstance(1234,Iterable))
輸出:
True
False
1 subject There are many sphe
Catalog Introduce dependencie
Python如何裁剪圖片And how the croppe