gpt4 book ai didi

python - 获取不同格式的 Python 元组

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

我有一个像这样的 python 元组,

((1420455415000L, 2L), (1420545729000L, 3L), (1420653453000L, 2L))

我想把它转换成这种格式:

[[1420455415000, 2], [1420545729000, 3], [1420653453000, 2]]

请注意,我还想删除将此元组转换为字典时自动删除的“L”。我已经使用以下方法将元组的元组转换为列表:

def listit(t):
return list(map(listit, t)) if isinstance(t, (list, tuple)) else t

但 L 仍然存在。这是个问题,因为我正在将数据发送到 Javascript

我该怎么做?

最佳答案

如果您要将数据传递给 JavaScript,您可以使用 json 轻松完成此操作(JavaScript Object Notation) 模块:

>>> import json
>>> json.dumps(((1420455415000L, 2L), (1420545729000L, 3L), (1420653453000L, 2L)))
'[[1420455415000, 2], [1420545729000, 3], [1420653453000, 2]]'

关于python - 获取不同格式的 Python 元组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31206528/

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