标签: python pandas
我有一个包含一列数字的数据框。我想将这一列数据帧转换为列表。最简单的方法是什么?
答案 0 :(得分:1)
Series为此提供了一个名为tolist的方法:
tolist
df['columnname'].tolist()