Published
- 1 min read
python how to open zip files to pandas
The solution for this is noted below
python how to open zip files to pandas
Solution
df = pd.read_csv('filename.zip', compression='zip', header=0, sep=',', quotechar='"')
Try other methods by searching on the site. That is if this doesn’t work