Python
파이썬_컬럼명 리스트로 받기 Get Column Names as List in Pandas DataFrame
정문가
2023. 8. 31. 21:01
방법1= list(df)
방법2=df.columns.values.tolist()