Reputation: 31
I created a csv file with single sheet. I want to know how to create csv file with multiple sheets using python language.
Upvotes: 3
Views: 6986
Reputation: 73
A csv file is a simple file type with flat data, separated by commas. Unlike an excel file, for example, it cannot contain multiple sheets. If you need multiple sheets, you will have to make multiple csv files.
Upvotes: 4