240 发简信
IP属地:新疆
  • 如何检测一个对象是否可迭代?

    Python 中一个对象是否可以迭代def iterable(x):try:iter(x)return Trueexcept TypeError...