使用Pandas读取CSV文件的特定列

使用Pandas读取CSV文件的特定列

让我们看看如何使用Pandas读取CSV文件的特定列。这可以在pandas.read_csv()方法的帮助下完成。我们将传递第一个参数为CSV文件,第二个参数为关键字usecols中的特定列列表。它将返回CSV文件中特定列的数据。

例子 1:

# importing the module
import pandas as pd
  
# read specific columns of csv file using Pandas
df = pd.read_csv("student_scores2.csv", usecols = ['IQ','Scores'])
print(df)

输出

使用Pandas读取CSV文件的特定列

例子2:

# importing the module
import pandas as pd
  
# read specific columns of csv file using Pandas 
df = pd.read_csv("student.csv", usecols = ['Hours','Scores','Pass'])
print(df)

输出

使用Pandas读取CSV文件的特定列

实例3:

# importing the module
import pandas as pd
  
 # read specific columns of csv file using Pandas
df = pd.read_csv("titanic.csv", usecols = ['Survived','Pclass'])
print(df)

输出:

使用Pandas读取CSV文件的特定列

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程