python连续数字_python-如何从列表中选择连续的数字

可能有很多方法可以做到这一点.这是基于reduce()和islice()的一种:

from functools import reduce

from itertools import islice

qw = [3, 4, 8, 9, 12, 13, 14]

master_list = ['Thus', 'the', 'consecutive', 'indices', 'will', 'help', 'me', 'pick', 'out', 'the', 'required', 'words', 'from', 'master_list', 'as']

def divide(value, element):

if not value[-1] or element - value[-1][-1] == 1:

value[-1].append(element)

else:

value.append([element])

return value

slices = [(array[0], array[-1]) for array in reduce(divide, qw, [[]])]

print(slices)

for sliced in slices:

print(list(islice(master_list, *sliced)))

OUTPUT

% python3 test.py

[(3, 4), (8, 9), (12, 14)]

['indices']

['out']

['from', 'master_list']

%

请注意,这以惯常的Python方式处理片中的第二个数字,因为它超出了我们想要的数字.如果它确实是您想要的最后一项,则使用1修改此元素:

(array[0], array[-1] + 1)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值