1.将Pandas类型转换为numpy类型,通过.values来转换:

np = pd.values

 

2.将numpy类型转换为list类型,通过.tolist()方法转换:

list = np.tolist()