[python][基础]判断变量是否可迭代 2023年3月7日 基础 0条评论 202次阅读 0人点赞 方法一: 适用于python2和python3 >>> from collections import Iterable >>> isinstance("str", Iterable)…