CSV モジュールを使用して CSV ファイルの特定の列からデータを抽出するにはどうすればよいですか?

Patricia Arquette
リリース: 2024-11-15 05:23:02
オリジナル
905 人が閲覧しました

How to Extract Data from Specific Columns in a CSV File with the CSV Module?

Extracting Data from Specific Columns in a CSV File with the CSV Module

In working with CSV files, it is often necessary to extract data from specific columns only. To achieve this using the CSV module, it is important to understand how the library handles data retrieval.

In the provided code sample, the attempt to access specific columns is through row[i] syntax, where i represents the column number. However, the result is not as expected due to an incorrect approach.

The correct method is to include the print statement within the for loop. The following corrected code demonstrates this:

import csv

included_cols = [1, 2, 6, 7]
with open("csv_file.csv") as csvfile:
    reader = csv.reader(csvfile, delimiter=",")
    for row in reader:
        content = list(row[i] for i in included_cols)
        print(content)  # Include the print statement within the loop to display each row
ログイン後にコピー

Now, the modified code will print out the values from the desired columns for each row.

However, it's worth mentioning an alternative approach using the pandas library, which simplifies the handling of CSV files. With pandas, you can easily read a CSV file and extract specific columns into variables:

import pandas as pd

df = pd.read_csv("csv_file.csv")
names = df["Name"]  # Use df['column_name'] to extract a specific column into a variable
ログイン後にコピー

The pandas library provides a versatile set of tools for working with structured data, making it a recommended choice for handling CSV files effectively.

以上がCSV モジュールを使用して CSV ファイルの特定の列からデータを抽出するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート