尝试按索引访问列表时发生Python错误-“列表索引必须是整数,而不是str”

尝试按索引访问列表时发生Python错误-“列表索引必须是整数,而不是str”,第1张

尝试按索引访问列表时发生Python错误-“列表索引必须是整数,而不是str”

您是否期望

player
成为一个
dict
而不是一个
list

>>> player=[1,2,3]>>> player["score"]Traceback (most recent call last):  File "<stdin>", line 1, in <module>TypeError: list indices must be integers, not str>>> player={'score':1, 'age': 2, "foo":3}>>> player['score']1


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5674561.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存