gpt4 book ai didi

python - 将 python 列表存储到数据库的最佳方法?

转载 作者:太空狗 更新时间:2023-10-30 01:58:37 25 4
gpt4 key购买 nike

将 python 数字列表(例如 [4, 7, 10, 39, 91])存储到数据库的最佳方式是什么?我将 Pyramid 框架与 SQLAlchemy 结合使用来与数据库通信。

谢谢!

最佳答案

您可以使用 json将您的数组保存在数据库中作为字符串:

In [1]: import json

In [2]: json.dumps([1, 2, 3])
Out[2]: '[1, 2, 3]'

In [3]: json.loads(json.dumps([1, 2, 3]))
Out[3]: [1, 2, 3]

也可以考虑使用 cjson为了更好的表现和anyjson很好的回退。

关于python - 将 python 列表存储到数据库的最佳方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6222381/

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