gpt4 book ai didi

python - 有没有办法在python中将字典作为pandas Dataframe的条目?

转载 作者:行者123 更新时间:2023-12-04 00:06:21 25 4
gpt4 key购买 nike

就像是:

d={'a':1, 'b'=2}
data=pandas.DataFrame()
data['new column'] = d
data['new column'][0]

最后一个命令将返回字典 d 在哪里?

最佳答案

您可以将字典包装在列表中,以便将字典视为元素而不是可迭代对象:

d={'a':1, 'b': 2}
data=pd.DataFrame()
data['new column'] = [d]
data['new column'][0]

# {'a': 1, 'b': 2}

关于python - 有没有办法在python中将字典作为pandas Dataframe的条目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41710501/

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