当前位置:   article > 正文

Python错误:TypeError: string indices must be integers_python typeerror: string indices must be integers

python typeerror: string indices must be integers

在项目遇到一个错误 :

TypeError: string indices must be integers

由于是返回的接口数据,所以一时也分辨不出是哪里的错,然后我就还原了这样的场景:

  1. unicode_str = u'abcd'
  2. print unicode_str[2]
  3. print unicode_str['mykey']

读取一个unicode编码的字符串的一个不存在的属性,见第三行,然后就会出现上面的错误

所以在读取字典的时候,最好先判断类型,然后再查看它是否已经有这样的属性:

type(mydict) == type({}) #检查不是字典

如果是字典,再看看有没有这样的属性:mydict.has_key('mykey')  

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/215938
推荐阅读
相关标签
  

闽ICP备14008679号