Traceback (most recent call last): File "D:\hw_stock_2022\ETF 轮动策略加强版\ETF 轮动策略加强版.py", line 105, in <module> k_data = content['data'][ETF_code] TypeError: list indices must be integers or slices, not str
时间: 2023-02-05 15:50:36 浏览: 2
Python BeautifulSoup [解决方法] TypeError: list indices must be integers or slices, not str
5星 · 资源好评率100%
看起来你在尝试使用一个字符串来索引列表,但是 Python 不允许这样做。按照错误信息中的提示,你只能使用整数或切片来索引列表。
你需要检查你的代码,看看是否有将字符串作为列表的索引的地方,然后将其更改为使用整数或切片。
如果你无法解决问题,可以提供你的代码和详细的错误信息,我可以帮助你进一步分析问题的原因。
阅读全文