Python经验总结:两种Type Error问题
更新时间:2023年09月09日 11:11:37 作者:Big_quant
这篇文章主要介绍了Python经验总结:两种Type Error问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
python报错 TypeError:
string indices must be integers
所以在读取字典的时候,最好先判断类型,然后再查看它是否已经有这样的属性:
#检查不是字典 type(mydict) == type({})
如果是字典,再看看有没有这样的属性:
mydict.has_key('mykey')
1、 看看变量是否是字典
2、检查字典是否有对应的key值
list indices must be integers or slices, not tuple
以下两种情况都会出现此错误:
points = [ [1, 2], [0, 4], [2, 0][12,1]]
list里的元素必须一样:
points = [ [1, 2],[0, 4],[2, 0]]
这个也会报错:
stations = ['Schagen', 'Heerhugowaard', 'Alkmaar', 'Castricum', 'Zaandam', 'Amsterdam', 'Sloterdijk', 'Amsterdam Centraal', 'Amsterdam Amstel', 'Utrecht Centraal', ''s-Hertogenbosch', 'Eindhoven', 'Weert', 'Roermond', 'Sittard', 'Maastricht'] IndEind = stations.index("Heerhugowaard") IndBegin = stations.index('Sloterdijk') intBegin = int(IndBegin) intEind = int(IndEind) print('stations[0]: ', stations[intBegin, intEind])
这个是因为读取的是时候维数错误:
正确写法:
print('stations[0]: ', stations[intBegin:intEind]) ``
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
win10安装tensorflow-gpu1.8.0详细完整步骤
这篇文章主要介绍了win10安装tensorflow-gpu1.8.0详细完整步骤,本文给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下2020-01-01Python 网络编程之TCP客户端/服务端功能示例【基于socket套接字】
这篇文章主要介绍了Python 网络编程之TCP客户端/服务端功能,结合实例形式分析了Python使用socket套接字实现TCP协议下的客户端与服务器端数据传输操作技巧,需要的朋友可以参考下2019-10-10
最新评论