Maison  >  Questions et réponses  >  le corps du texte

python中如何判断一个对象是某个类型的数组?

RT, 现有数据[,...]如何用python判断对象是这种类型? 用isinstance(obj,list)不管用

PHP中文网PHP中文网2765 Il y a quelques jours514

répondre à tous(2)je répondrai

  • 高洛峰

    高洛峰2017-04-17 11:33:11

    >>> a
    [0, 1, 2]
    >>> isinstance(a,list)
    True
    

    répondre
    0
  • 高洛峰

    高洛峰2017-04-17 11:33:11

    lz可以看看文章http://blog.csdn.net/suofiya2008/article/details/5587996

    répondre
    0
  • Annulerrépondre