gpt4 book ai didi

python - 在 Python 中将元组拆分为所需的格式

转载 作者:行者123 更新时间:2023-11-28 19:26:32 26 4
gpt4 key购买 nike

我从 sqlite3 读取数据,输出是这样的(3252, u'https://www.google.fr/search?aq=f&sourceid=chrome&ie=UTF-8&q=python+split+tuple', u'在列表中使用拆分命令 - Python', 10)

所以我想将其重新格式化为如下表格:table = [["", "number", "url", "title"],
[“数字”,3252],
[“网址”,.....],
[“标题”,....]]
那么,我该怎么做呢,因为拆分不能用于元组...谢谢!!

最佳答案

keys = ["number", "url", "title"]
table = [zip(keys, tup) for tup in lines if len(tup) == 3]

如果你想把它当作字典:

table = [dict(zip(keys, tup)) for tup in lines if len(tup) == 3]

关于python - 在 Python 中将元组拆分为所需的格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10211350/

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