gpt4 book ai didi

python - 如何将带有列表键的 python 字典保存到文件中?

转载 作者:太空宇宙 更新时间:2023-11-04 08:38:17 24 4
gpt4 key购买 nike

如何将带有列表键的 python 字典保存到文件中?我试过 json,但它说它只适用于字符串键,我的字典看起来像这样:

{(24222, 64130): 'whatever', (24270, 64130): 'whatever', (24240, 64130): 'whatever'}

而且我必须保持这种形式。感谢您的帮助!

最佳答案

将你的字典转换成字符串并写入文件。

dict_val = {(24222, 64130): 'whatever', (24270, 64130): 'whatever', (24240, 64130): 'whatever'}

with open('file.txt','w') as f:
f.write(str(dict_val))

关于python - 如何将带有列表键的 python 字典保存到文件中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47000599/

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