TypeError: list indices must be integers or slices, not str报错解决及原理

今天遇到这个报错
TypeError: list indices must be integers or slices, not str
这里的提示意思是list的索引必须是整数或者片,而不是str
一开始代码写的是
TypeError: list indices must be integers or slices, not str报错解决及原理_第1张图片
修改后
TypeError: list indices must be integers or slices, not str报错解决及原理_第2张图片
仔细观看数据
TypeError: list indices must be integers or slices, not str报错解决及原理_第3张图片
列表里套字典 字典里面再套字典 列表里的字典是要有多个的 为了区分是哪个 所以取的时候要加字典数据的位置索引0,1之类
再加key值 就可以取出想要的数据了

你可能感兴趣的:(报错,python,列表,数据结构)