'''
在d盘中已经存在test.zip文件
运行环境是win7 64位系统,运行软件是JetBrains PyCharm Community Edition 2018.1.4 x64,Python是3.6
使用以下代码时,报AttributeError: module 'zipfile' has no attribute 'ZipFile'错误
'''
import zipfile,os
os.chdir('d:\') # move to the folder with example.zip
print(os.getcwd())
exampleZip = zipfile.ZipFile('test.zip')
自己找到了错误原因,我在Python的交互式环境中试验了代码,是没有问题的。证明是PyCharm环境的问题,然后我猛然发现是因为我把程序的名字命名为“zipfile”和模块重名了。所以产生了这个错误。
同