[python][基础]判断变量是否可迭代

方法一:

适用于python2和python3

>>> from collections import Iterable
>>> isinstance("str", Iterable)
True

方法二:

适用于python3

s = "hello world"
hasattr(s, "__iter__")
    原文作者:garnetreds7
    原文地址: https://segmentfault.com/a/1190000008385114
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞