search
HomeBackend DevelopmentPython TutorialHow to read and write csv files in Python
How to read and write csv files in PythonJun 26, 2023 pm 01:09 PM
csv file

To write to CSV in Python, use Python’s csv module.

For example, let's write a list of strings to a new CSV file:

import csv
data = ["This", "is", "a", "Test"]
with open('example.csv', 'w') as file:
    writer = csv.writer(file)
    writer.writerow(data)

Therefore, you will see a file named example.csv in the current folder.

4 steps to write CSV in Python

To write a CSV file in Python:

1. With Open the CSV file in write mode. This happens using the open() function. Give it the path to the file as the first argument. Specify the mode as the second argument ("r" for read, "w" for write).
2. Create a CSV writer object. To do this, create a writer() object of the csv module and pass the open file as its argument.
3. Write data to CSV file. Use the writerow() function of the writer object to write data to the CSV file.
4. Close the CSV file, using the file's close() method.

Here is an example illustrating this process:

import csv
# 1.
file = open('test.csv', 'w')
# 2.
writer = csv.writer(file)
# 3.
data = ["This", "is", "a", "Test"]
writer.writerow(data)
# 4.
file.close()

This code creates a file named test.csv in the current folder.

If the specified file does not exist, the open() function will open a new file. If so, the existing file is opened.

Shorthand

To reduce the time it takes to write to CSV, open the file using the with statement. This way you don't have to worry about closing the file yourself. with will handle this part automatically.

For example:

import csv
# 1. step
with open('test.csv', 'w') as file:
    # 2. step
    writer = csv.writer(file)
    # 3. step
    data = ["This", "is", "a", "Test"]
    writer.writerow(data)

This will create a new CSV file named test.csv in the current folder and write the list of strings into it.

How to write non-ASCII characters to CSV in Python

By default, you cannot write non-ASCII characters to a CSV file.

To support writing non-ASCII values ​​to a CSV file, specify the character encoding as the third parameter in the open() call.

with open('PATH_TO_FILE.csv', 'w', encoding="UTF8")

The rest of the process follows the steps you learned earlier.

How to create headers for CSV files

So far, you have created CSV files that lack structure.

In Python, you can write headers for any CSV file using the

writerow() function for writing any data to CSV.

Example: Let’s create a sample CSV file containing student data.

In order to effectively build the data, you need to create a header for students at the beginning of the CSV file and insert it. You can follow the same steps as before to write the data to a CSV file and you're done.

Here is the code:

import csv
# Define the structure of the data
student_header = ['name', 'age', 'major', 'minor']
# Define the actual data
student_data = ['Jack', 23, 'Physics', 'Chemistry']
# 1. Open a new CSV file
with open('students.csv', 'w') as file:
    # 2. Create a CSV writer
    writer = csv.writer(file)
    # 3. Write data to the file
    writer.writerow(student_header)
    writer.writerow(student_data)

This will create the students.csv file into the folder you are currently working in. The new file will look like this:

How to read and write csv files in Python

How to write multiple lines to a CSV file in Python

In Python you can use the writerows of the CSV writer () function writes multiple rows to a CSV file simultaneously.

example. Let's say you want to write multiple rows of data to a CSV file. For example, you might have a list of students instead of just one.

To write multiple rows of data to CSV, use the writerows() method.

Here is an example:

import csv
student_header = ['name', 'age', 'major', 'minor']
student_data = [
    ['Jack', 23, 'Physics', 'Chemistry'],
    ['Sophie', 22, 'Physics', 'Computer Science'],
    ['John', 24, 'Mathematics', 'Physics'],
    ['Jane', 30, 'Chemistry', 'Physics']
]
with open('students.csv', 'w') as file:
    writer = csv.writer(file)
    writer.writerow(student_header)
    # Use writerows() not writerow()
    writer.writerows(student_data)

This will generate a new CSV file that looks like this:

How to read and write csv files in Python

How to do it in Python Write the dictionary to the CSV file

Using the DictWriter object can write the dictionary to the CSV file in Python, including the following three steps:

1. Use the DictWriter object of the csv module and which specifies the field name.

2. Use the writeheader() method to create a header into a CSV file.

3. Use the writerows() method to write dictionary data to the file.

Example: Let’s write the student data dictionary to a CSV file.

import csv
student_header = ['name', 'age', 'major', 'minor']
student_data = [
    {'name': 'Jack', 'age': 23, 'major': 'Physics', 'minor': 'Chemistry'},
    {'name': 'Sophie', 'age': 22, 'major': 'Physics', 'minor': 'Computer Science'},
    {'name': 'John', 'age': 24, 'major': 'Mathematics', 'minor': 'Physics'},
    {'name': 'Jane', 'age': 30, 'major': 'Chemistry', 'minor': 'Physics'}
]
with open('students.csv', 'w') as file:
    # Create a CSV dictionary writer and add the student header as field names
    writer = csv.DictWriter(file, fieldnames=student_header)
    # Use writerows() not writerow()
    writer.writeheader()
    writer.writerows(student_data)

Now the result is the same as the students.csv file in the previous example:

How to read and write csv files in Python

Conclusion

CSV or comma separated values ​​is a Commonly used file formats. It consists of values ​​usually separated by commas.

To write CSV in Python, you need to use the csv module by following these steps:

1. Open the CSV file in write mode.

2. Create a CSV writer object.

3. Write data to CSV file.

4. Close the CSV file.

This is a practical example.

import csv
data = ["This", "is", "a", "Test"]
with open('example.csv', 'w') as file:
    writer = csv.writer(file)
    writer.writerow(data)

Happy coding!

The above is the detailed content of How to read and write csv files in Python. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
Java 中使用 OpenCSV 读取和写入 CSV 文件的示例Java 中使用 OpenCSV 读取和写入 CSV 文件的示例Dec 20, 2023 pm 01:39 PM

Java中使用OpenCSV读取和写入CSV文件的示例CSV(Comma-SeparatedValues)指的是以逗号分隔的数值,是一种常见的数据存储格式。在Java中,OpenCSV是一个常用的工具库,用于读取和写入CSV文件。本文将介绍如何使用OpenCSV来实现读取和写入CSV文件的示例。引入OpenCSV库首先,需要引入OpenCSV库到

CSV文件操作速成指南CSV文件操作速成指南Dec 26, 2023 pm 02:23 PM

快速学会打开和处理CSV格式文件的方法指南随着数据分析和处理的不断发展,CSV格式成为了广泛使用的文件格式之一。CSV文件是一种简单且易于阅读的文本文件,其以逗号分隔不同的数据字段。无论是在学术研究、商业分析还是数据处理方面,都经常会遇到需要打开和处理CSV文件的情况。下面的指南将向您介绍如何快速学会打开和处理CSV格式文件。步骤一:了解CSV文件格式首先,

Oracle导入中文数据时出现乱码怎么解决?Oracle导入中文数据时出现乱码怎么解决?Mar 10, 2024 am 09:54 AM

标题:解决Oracle导入中文数据乱码问题的方法及代码示例在Oracle数据库中导入中文数据时,经常会出现乱码的情况,这可能是由于数据库字符集设置不正确或者导入过程中出现编码转换问题所致。为了解决这个问题,我们可以采取一些方法来保证导入的中文数据能够正确显示。下面是一些解决方案及具体的代码示例:一、检查数据库字符集设置在Oracle数据库中,字符集的设置对于

csv文件怎么打开csv文件怎么打开Oct 27, 2023 am 11:07 AM

CSV文件可以使用文本编辑器、电子表格软件、编程语言或数据库工具等多种方式打开。详细介绍:1、文本编辑器,CSV文件可以使用任何文本编辑器打开,如记事本、TextEdit或Vim,通过双击CSV文件,系统会默认使用关联的文本编辑器打开;2、电子表格软件,CSV文件可以使用电子表格软件打开,如Microsoft Excel等,这些软件支持直接导入CSV文件,并将其解析为表格等等。

pandas怎么读取csv文件pandas怎么读取csv文件Dec 01, 2023 pm 04:18 PM

读取CSV文件的方法有使用read_csv()函数、指定分隔符、指定列名、跳过行、缺失值处理、自定义数据类型等。详细介绍:1、read_csv()函数是Pandas中最常用的读取CSV文件的方法。它可以从本地文件系统或远程URL加载CSV数据,并返回一个DataFrame对象;2、指定分隔符,默认情况下,read_csv()函数将使用逗号作为CSV文件的分隔符等等。

vcf文件用什么软件打开vcf文件用什么软件打开Feb 19, 2024 pm 01:34 PM

vcf文件是一种常用的电子名片文件格式,用于存储联系人信息,例如姓名、电话号码、电子邮件地址等。一般情况下,我们可以使用多种软件来打开vcf文件,包括以下几种常见的方法。通讯录应用程序:大多数智能手机都配备了通讯录应用程序,这些应用程序可以直接导入和打开vcf文件。用户只需要点击文件或使用导入功能,通讯录应用程序就会自动加载和显示vcf文件中的联系人信息。例

csv是什么样的格式文件csv是什么样的格式文件Jul 25, 2023 pm 04:33 PM

csv文件是一种常用的文件格式,用于存储和交换数据,通常以纯文本形式存在,可以使用任何文本编辑器进行打开和编辑,使用逗号作为字段分隔符,并且可以通过引号进行转义。由于其简单和灵活的结构,它被广泛用于不同的应用程序和领域,方便数据的导入、导出和处理。

csv格式文件是什么csv格式文件是什么Jul 25, 2023 pm 04:36 PM

CSV格式文件是一种常见的文本文件格式,其全称为Comma-Separated Values,中文名为逗号分隔值文件,其简单明了的结构和易读性使得它成为数据导入、备份和传输的理想选择,在使用CSV文件时需要注意对兼容性和数据类型的处理,以确保数据的准确和可靠。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use