gpt4 book ai didi

python - 如何连接列表来获取IP地址和端口?

转载 作者:太空宇宙 更新时间:2023-11-03 18:10:58 25 4
gpt4 key购买 nike

我编写 python 代码,并得到一个如下列表:

['221.180.147.30', '86', '61.155.169.11', '808']

我怎样才能把它变成:

['221.180.147.30:86', '61.155.169.11:808']

最佳答案

使用列表理解:

>>> lst = ['221.180.147.30', '86', '61.155.169.11', '808']
>>> [':'.join(lst[i:i+2]) for i in range(0, len(lst), 2)]
['221.180.147.30:86', '61.155.169.11:808']

使用zip(*[iter(lst)*N] itertools recipe - grouper 中介绍的技巧(这适用于任何可迭代对象,而不仅仅是列表):

>>> [':'.join(group) for group in zip(*[iter(lst)]*2)]
['221.180.147.30:86', '61.155.169.11:808']

更新

使用 map :

>>> map(':'.join, zip(lst[::2], lst[1::2]))  # In Python 2.x
['221.180.147.30:86', '61.155.169.11:808']
>>> list(map(':'.join, zip(lst[::2], lst[1::2]))) # In Python 3.x
['221.180.147.30:86', '61.155.169.11:808']

zip(lst[::2], lst[1::2])来自 Burhan Khalid 的回答。

关于python - 如何连接列表来获取IP地址和端口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25955659/

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