📌  相关文章
📜  如何从 python 中的两个列表创建数据框 - TypeScript 代码示例

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

代码示例1
# Python 3 to get list of tuples from two lists
data_tuples = list(zip(Month,Days))
data_tuples
[('Jan', 31), ('Apr', 30), ('Mar', 31), ('June', 30)]

>pd.DataFrame(data_tuples, columns=['Month','Day'])
 Month Day
0 Jan 31
1 Apr 30
2 Mar 31
3 June 30