当前位置: 代码迷 >> python >> AttributeError:“ str”对象没有属性“ getcwd”
  详细解决方案

AttributeError:“ str”对象没有属性“ getcwd”

热度:131   发布时间:2023-06-27 22:00:07.0

我是python的新手。 我正在尝试将文件解压缩到当前脚本目录中,但无法进行此工作...

zip = zipfile.ZipFile(os.getcwd() + '/Sample_APE_File.zip')
zip.extractall(os.getcwd())

错误: AttributeError: 'str' object has no attribute 'getcwd'

您为os分配了一个字符串值,它不再绑定到模块:

os = 'some string'

将其重命名为其他名称。

  相关解决方案