리스트1 데이터프레임에 리스트를 행으로 넣기 방법1: 리스트 안에 행리스트의 꼴 # import pandas as pd list1 = ['a', 'b','c'] list2 = ['d', 'e', 'f'] df = pd.DataFrame([list1, list2]) print(df) # 0 1 2 #0 a b c #1 d e f 방법2: Series로 만들어서 붙이기(안되는 경우가 있음) 원본 링크: https://emilkwak.github.io/dataframe-list-row-append-ignore-index # import pandas as pd df = pd.DataFrame() list = ["a", "b, "c"] df.append(pd.Series(list), ignore_index = True) *안되는 경우 그 이유: append.. 2022. 2. 28. 이전 1 다음