dataframe与列表list的相互转化

一)将df转化为list :

np.array(df).tolist()

二)将list转化为df:

pd.DataFrame(list,columns=["value"])

你可能感兴趣的:(python编程)