python报错AttributeError: module 'string' has no attribute 'strip'
时间: 2024-02-29 15:50:19 浏览: 238
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误是由于在使用字符串模块时,尝试调了一个不存在的属性strip导致的。strip是字符串对象的方法,而不是模块的属性。可能的原因是你在代码中使用了类似于string.strip()的语法,而正确的用法应该是对字符串对象进行操作,例如"string".strip()。
如果你能提供更多的上下文或代码片段,我可以给出更具体的解决方案。
阅读全文