【python】pandas DataFrame数据转为list(‘DataFrame‘ object has no attribute ‘tolist‘)

不可以直接使用tolist(),不然会报错:

'DataFrame' object has no attribute 'tolist'

正确方式:

df.values.tolist()

你可能感兴趣的:(python)