标签: python zipfile python-3.4
我正在尝试使用python 3.4创建zipfile。 执行后会显示以下错误:
AttributeError: 'module' object has no attribute 'Zipfile'
我的代码:
import zipfile f= zipfile.Zipfile("testZIP.zip","w")
答案 0 :(得分:12)
zipfile.ZipFile为F而非zipfile.Zipfile
zipfile.ZipFile
F
zipfile.Zipfile