AttributeError: 'str' object has no attribute 'stem'
时间: 2023-08-05 14:10:25 浏览: 467
这个错误是因为在代码中调用了一个字符串对象的 `stem` 属性,但字符串对象并没有这个属性。根据引用的内容,你可以将 `Path` 对象转换为字符串对象来解决这个问题。在你的代码中,将 `filename` 转换为字符串对象,即 `filename = str(filename)`。这样就可以成功调用 `stem` 属性了。
阅读全文