📌  相关文章
📜  将列表转换为数据框 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:45.128000             🧑  作者: Mango

代码示例3
L = ['Thanks You', 'Its fine no problem', 'Are you sure']

#create new df 
df = pd.DataFrame({'col':L})
print (df)

                   col
0           Thanks You
1  Its fine no problem
2         Are you sure