AttributeError: 'list' object has no attribute 'strip'
时间: 2023-12-03 22:41:06 浏览: 193
python报错: 'list' object has no attribute 'shape'的解决
5星 · 资源好评率100%
这个错误是因为你在一个列表对象上调用了`strip()`方法,但是列表对象并没有这个方法。`strip()`方法是字符串对象的方法,用于去除字符串两端的空格。如果你想要去除列表中元素的空格,可以使用列表推导式或循环遍历列表来实现。例如:
```
# 使用列表推导式去除列表中元素的空格
my_list = [' hello ', ' world ', ' python ']
my_list = [x.strip() for x in my_list]
# 循环遍历列表去除元素的空格
my_list = [' hello ', ' world ', ' python ']
for i in range(len(my_list)):
my_list[i] = my_list[i].strip()
```
阅读全文