Srinivasa rao Meesala
Srinivasa rao Meesala

Reputation: 31

How to create multiple sheets in csv using python

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

Answers (1)

Cobra
Cobra

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

Related Questions