DataFrame和List相互转换

一、dataframe转成list
每行数据打包作为子list

df = pd.DataFrame({'a': [1, 3, 5, 7, 4,],
                   'b': [3, 5, 6, 2, 4,]})
print(df)
print(df.values.tolist())

DataFrame和List相互转换_第1张图片

二、list转dataframe

list_test = [[1, 3], [3, 5], [5, 6], [7, 2], [4, 4]]
print(list_test)
print(pd.DataFrame(list_test))

DataFrame和List相互转换_第2张图片

你可能感兴趣的:(pandas)