ItSolutionStuff.com

How to Write Multiple Rows in CSV using Python?

By Hardik Savani • October 30, 2023
Python

Hey,

Hello, all! In this article, we will talk about how to write multiple rows in csv using python. you will learn python csv files multiple rows example. In this article, we will implement a python write multiple rows to csv file. In this article, we will implement a write multiple lines to csv file python. Follow the below tutorial step of python list to csv rows.

In this example, we will create demo.csv file with ID, Name and Email fields. we will create "data" list with values for write multiple rows to csv file. we will use open(), writer(), writerow(), writerows() and close() functions to create csv file from list.

writerows(): it will write multiple rows with list.

So, Without any further ado, let's see below code example:

You can use these examples with python3 (Python 3) version.

Example:

main.py

import csv
  
# open the file in the write mode
f = open('demo.csv', 'w')
  
# create the csv writer
writer = csv.writer(f)
  
header = ['ID', 'Name', 'Email']
data = [
	[1, 'Hardik Savani', 'hardik@gmail.com'],
	[2, 'Vimal Kashiyani', 'vimal@gmail.com'],
	[3, 'Harshad Pathak', 'harshad@gmail.com'],
]
  
# write the header
writer.writerow(header)
  
# write a row to the csv file
writer.writerows(data)
  
# close the file
f.close()

Output:

You can see csv file layout:

I hope it can help you...

Tags: Python
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Create CSV File in Python?

Read Now →

Python Read Text File into List Example

Read Now →

How to Read Text File Line by Line in Python?

Read Now →

How to Read a Text File in Python?

Read Now →

How to Append Text or Lines to a Text File in Python?

Read Now →

Python Generate Text File from List Example

Read Now →

Python Create Text File If Not Exists Example

Read Now →

How to Capitalize String in Python?

Read Now →

Python Create an Empty Text File Example

Read Now →

How to Find Average of List in Python?

Read Now →

How to Get Min Value from Python List?

Read Now →

How to Get Current Date and Time in Python?

Read Now →