AttributeError: 'property' object has no attribute 'strip'
时间: 2023-07-23 09:14:05 浏览: 318
python报错: list object has no attribute shape的解决
这个错误通常发生在尝试对一个属性使用 `strip()` 方法时。`AttributeError: 'property' object has no attribute 'strip'` 的意思是你正在尝试在一个属性对象上调用 `strip()` 方法,但该属性对象本身并没有定义 `strip()` 方法。
要解决这个问题,你需要确认你正在调用 `strip()` 方法的是一个字符串而不是一个属性对象。你可以检查一下你的代码,确保你在正确的地方使用了 `strip()` 方法。
阅读全文