gpt4 book ai didi

Python - 将列表范围设置为特定值

转载 作者:太空狗 更新时间:2023-10-29 20:39:57 24 4
gpt4 key购买 nike

我需要根据具有边界 (start,end) 的元组将列表的子集设置为特定值。

目前我正在这样做:

indexes = range(bounds[0], bounds[1] + 1)
for i in indexes:
my_list[i] = 'foo'

这对我来说似乎不太好。是否有更 pythonic 的方法?

最佳答案

使用切片赋值:

my_list[bounds[0]:bounds[1] + 1] = ['foo'] * ((bounds[1] + 1) - bounds[0])

或者使用局部变量只添加一次+ 1:

lower, upper = bounds
upper += 1
my_list[lower:upper] = ['foo'] * (upper - lower)

您可能希望将上限存储为非包容性,以便更好地使用 python 并避免所有 + 1 计数。

演示:

>>> my_list = range(10)
>>> bounds = (2, 5)
>>> my_list[bounds[0]:bounds[1] + 1] = ['foo'] * ((bounds[1] + 1) - bounds[0])
>>> my_list
[0, 1, 'foo', 'foo', 'foo', 'foo', 6, 7, 8, 9]

关于Python - 将列表范围设置为特定值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11395057/

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