Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Pandas 读取 CSV 文件


读取 CSV 文件

使用 CSV 文件(逗号分隔值文件)存储大型数据集是一种简单的方法。

CSV 文件包含纯文本,并且是一种众所周知的格式,每个人都可以读取,包括 Pandas。

在我们的示例中,我们将使用一个名为“data.csv”的 CSV 文件。

下载 data.csv打开 data.csv

示例

将 CSV 加载到 DataFrame 中

import pandas as pd

df = pd.read_csv('data.csv')

print(df.to_string()) 
自己尝试一下 »

提示:使用 to_string() 打印整个 DataFrame。

如果 DataFrame 很大,包含很多行,Pandas 将只返回前 5 行和后 5 行。

示例

不使用 to_string() 方法打印 DataFrame

import pandas as pd

df = pd.read_csv('data.csv')

print(df) 
自己尝试一下 »

最大行数

返回的行数在 Pandas 选项设置中定义。

您可以使用 pd.options.display.max_rows 语句检查系统的最大行数。

示例

检查返回的最大行数

import pandas as pd

print(pd.options.display.max_rows) 
自己尝试一下 »

在我的系统中,该数字是 60,这意味着如果 DataFrame 包含超过 60 行,则 print(df) 语句将只返回标题以及前 5 行和后 5 行。

您可以使用相同的语句更改最大行数。

示例

增加最大行数以显示整个 DataFrame

import pandas as pd

pd.options.display.max_rows = 9999

df = pd.read_csv('data.csv')

print(df) 
自己尝试一下 »


w3schools CERTIFIED . 2022

获取认证!

完成 Pandas 模块,进行练习,参加考试,您将获得 w3schools 认证!

10 美元报名

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.