728x90
반응형

 티스토리 

 

Convert CSV file to list type
CSV파일 리스트 타입변환

- Reads data from a CSV file and converts it into a Python list
- Can use either pandas or the csv module

# CSV 파일을 읽어서 DataFrame으로 변환한 후, 리스트로 변환함

1.Code Review

import csv

# Open the CSV file, and convert each row into a list
with open('example.csv', 'r') as file:
    csv_reader = csv.reader(file)
    list_of_rows = list(csv_reader)

print(list_of_rows)

# Using pandas
import pandas as pd

# Read the CSV file into a DataFrame, then convert to a list
df = pd.read_csv('example.csv')
list_of_rows_with_pandas = df.values.tolist()

print(list_of_rows_with_pandas)

추가로 아래와 같이 리스트 pop Method를 사용하여 0번을 컬럼으로 지정할수도 있다.

columns = list_of_rows.pop(0)
df = pd.DataFrame(csvdata,columns=columns)

반응형

 

728x90

 

마무리

- 이번 포스팅은 CSV를 List type으로 변환에 대해 알아봤습니다.

CostZeroCode

 
 
 

궁금한 사항은 lution2@gmail.com로 문의사항  주시면 답변 드리겠습니다.
감사합니다.

 

 

728x90
반응형

+ Recent posts