gpt4 book ai didi

python - 将 Pandas DataFrame 转换为字典

转载 作者:太空宇宙 更新时间:2023-11-04 01:45:09 26 4
gpt4 key购买 nike

我有一个简单的DataFrame:

      Name Format
0 cntry int
1 dweight str
2 pspwght str
3 pweight str
4 nwspol str

我想要这样的字典:

{
"cntry":"int",
"dweight":"str",
"pspwght":"str",
"pweight":"str",
"nwspol":"str"
}

dict["cntry"] 将返回 intdict["dweight"] 将返回 str.

我该怎么做?

最佳答案

这个怎么样:

import pandas as pd

df = pd.DataFrame({'col_1': ['A', 'B', 'C', 'D'], 'col_2': [1, 1, 2, 3], 'col_3': ['Bla', 'Foo', 'Sup', 'Asdf']})

res_dict = dict(zip(df['col_1'], df['col_3']))

res_dict 的内容:

{'A': 'Bla', 'B': 'Foo', 'C': 'Sup', 'D': 'Asdf'}

关于python - 将 Pandas DataFrame 转换为字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59241882/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com