Test if a variable is a list or tuple

前端 未结 13 1339
余生分开走
余生分开走 2020-12-22 16:53

In python, what\'s the best way to test if a variable contains a list or a tuple? (ie. a collection)

Is isinstance() as evil as suggested here? http://w

相关标签:
13条回答
  • 2020-12-22 17:37
    >>> l = []
    >>> l.__class__.__name__ in ('list', 'tuple')
    True
    
    0 讨论(0)
提交回复
热议问题