gpt4 book ai didi

python - 从元组中删除空格

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

我有这个列表:

[('', '', '654', 'Tom', '- Jerry', '', '', ''),
('', '', '', '', '', '756', 'X-Man -', 'Batman'),
('453', 'Hulk - Superman', '', '', '', '', '', '')]

如何删除不需要的(主要是外部的)字符,使其保持如下状态:

[('654', 'Tom' , '- Jerry'), 
('756', 'X-man' -', Batman'),
('435','Hulk - Superman')]

这是一个元组,所以我想我不能使用 .strip() 方法

谢谢。

最佳答案

使用filter();它默认删除“空”(假)值:

[tuple(filter(None, tp)) for tp in inputlist]

演示:

>>> [tuple(filter(None, tp)) for tp in inputlist]
[('654', 'Tom', '- Jerry'), ('756', 'X-Man -', 'Batman'), ('453', 'Hulk - Superman')]

关于python - 从元组中删除空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15309034/

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