if lst[i]==' ': TypeError: string indices must be integers
时间: 2023-08-26 08:18:12 浏览: 213
Python BeautifulSoup [解决方法] TypeError: list indices must be integers or slices, not str
5星 · 资源好评率100%
这个问题涉及到了Python中字典和列表的取值问题,以及TensorFlow中的类型转换问题。 根据中的代码,这个小伙伴想要打印出字典中的"peach"。但是他在取值的时候遇到了错误。错误提示为"list indices must be integers, not Tensor"。这个错误是因为在使用索引取值时,索引必须是整数类型而不是Tensor类型。
根据中的TensorFlow文档,可以使用tf.cast函数进行类型转换。所以解决这个问题的方法是将Tensor类型的索引转换为整数类型。具体的代码如下:
```python
i = tf.cast(i, tf.int32)
```
这样就能解决"string indices must be integers"的错误。然后,你可以使用转换后的索引来访问列表中的元素,例如`lst[i`。但是你在问题描述中提到了另一个错误"TypeError: string indices must be integers",这个错误提示字符串索引必须是整数类型。这个错误可能是因为你使用了字符串类型的索引来访问列表中的元素。要解决这个问题,你需要将索引转换为整数类型,例如`i = int(i)`,然后再访问列表中的元素。
所以,你可以尝试使用以上的方法来解决你遇到的问题。希望能对你有所帮助!<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [已解决TypeError:List indices must be integers or slices , not str](https://blog.csdn.net/yuan2019035055/article/details/126149910)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [Tensorflow 提示list indices must be integers, not Tensor ?](https://blog.csdn.net/m0_37561765/article/details/78667734)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文