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으로 변환에 대해 알아봤습니다.
궁금한 사항은 lution2@gmail.com로 문의사항 주시면 답변 드리겠습니다.
감사합니다.
728x90
반응형
'PYTHON 파이썬' 카테고리의 다른 글
파이썬 십진수를 이진수로 변환 (0) | 2024.03.17 |
---|---|
[PYTHON/DATA CAMP] 코딩 연습/공부 사이트 추천 (0) | 2024.02.29 |
[PYTHON/UNITTEST] Simple and Easy example Code (0) | 2024.02.19 |
python] ASCII 코드 테이블(목록) 만들기 ,ord(), chr(), hex() 변환 (1) | 2024.01.28 |
파이썬 온라인 개발 툴,컴파일러 : Replit.com Online IDE Compiler (0) | 2024.01.07 |