Example Code:
import csv
'''
Example to Convert Python List to CSV
Author: Code2care.org
Date: 27 July 2023
Version: v1.0
'''
data_list = [
["Date", "T-Shirt", "Jeans", "Dress", "Shirts"],
["2023-07-01", 50, 30, 20, 15],
["2023-07-02", 40, 25, 15, 20],
["2023-07-03", 60, 35, 25, 18],
["2023-07-04", 55, 28, 18, 25],
["2023-07-05", 70, 40, 30, 22],
["2023-07-06", 80, 45, 35, 30],
["2023-07-07", 75, 42, 28, 28]
]
file_name = "sales_data_July_23.csv"
with open(file_name, mode='w', newline='') as file:
writer = csv.writer(file)
for row in data_list:
writer.writerow(row)
CSV file Data
Date,T-Shirt,Jeans,Dress,Shirts
2023-07-01,50,30,20,15
2023-07-02,40,25,15,20
2023-07-03,60,35,25,18
2023-07-04,55,28,18,25
2023-07-05,70,40,30,22
2023-07-06,80,45,35,30
2023-07-07,75,42,28,28

-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- Python: Convert Date to DateTime
- How to sort a List using Lambda in Python
- Python matplotlib segmentation fault: 11 macOS Big Sur
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- How to install Python 3.11 on Mac
- How to flatten a nested list in Python
- Python: Pandas Merge DataFrames on Index Example
- How to Run all Cells at Once Jupyter Notebook
- Python - Convert float to String
- How to add borders to tkinter label text
- How to Exit a Loop in Python Code
- [Python] Fix: ValueError: All arrays must be of the same length
- Sorting an array using Bubble Sort in Python Programming
- How to Unzip a file using Python
- Python: Merge DataFrames Pandas Outer Join Example
- Change label (text) color in tkinter
- Convert Float to String in Python
- Fix: fatal error: No such file or directory compilation terminated
- Python: Access index/counter of a for loop iteration
- Import Other Python Files Examples
- How to install Anaconda on Mac (M1/M2 Mac)
- Python Regular Expression to Find All Matches in List
- How to Read a binary File with Python
- How to disable warnings while Python file execution
- Know current Python Version
More Posts:
- How to Rename a Git Local Branch Using the --move Option - Git
- java.lang.ClassNotFoundException android.support.v7.widget.Toolbar [Fix] - Android
- How to open CMD for current file/folder location in Notepad++ - NotepadPlusPlus
- How to install iTerm2 Mac Terminal Alternative - MacOS
- 10 Must Know CSS Border Styles with Examples - CSS
- The Zsh Shell - Mac Tutorial - MacOS
- Android : Remove ListView Separator/divider programmatically or using xml property - Android
- 10 Beginners Commands for macOS Terminal Usage - MacOS