问题描述
我是python的新手。 我正在尝试将文件解压缩到当前脚本目录中,但无法进行此工作...
zip = zipfile.ZipFile(os.getcwd() + '/Sample_APE_File.zip')
zip.extractall(os.getcwd())
错误: AttributeError: 'str' object has no attribute 'getcwd'
1楼
您为os
分配了一个字符串值,它不再绑定到模块:
os = 'some string'
将其重命名为其他名称。