Test if a variable is a list or tuple

前端 未结 13 1437
余生分开走
余生分开走 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:27

    Document the argument as needing to be a sequence, and use it as a sequence. Don't check the type.

提交回复
热议问题