I am trying to create zipfile using python 3.4. Upon execution following error is shown:
AttributeError: 'module' object has no attribute 'Zipfile'
My code:
import zipfile
f= zipfile.Zipfile("testZIP.zip","w")
I am trying to create zipfile using python 3.4. Upon execution following error is shown:
AttributeError: 'module' object has no attribute 'Zipfile'
My code:
import zipfile
f= zipfile.Zipfile("testZIP.zip","w")