DataFrame轉換為list,dict;List轉換為DataFrame
dataframe['列名'].tolist()
dataframe.to_dict()
List轉換為DataFrame:
dt = DataFrame(list, columns=lables)