gpt4 book ai didi

Python,在列表中的每个项目上 append 字符串

转载 作者:太空宇宙 更新时间:2023-11-04 10:46:28 24 4
gpt4 key购买 nike

我有一个代码,可以在列表的每个项目上连接一个字符串“lst”。

    i = 0
lim = len(lst)
while i < lim:
lst[i] = 'lst%s' % (lst[i])
i += 1

有没有更快的方法?

最佳答案

这将修改原始的 lst 对象:

lst[:] = ['lst%s' % item for item in lst]

或使用新样式的字符串格式:

lst[:] = ['lst{}'.format(item) for item in lst]

关于Python,在列表中的每个项目上 append 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16977031/

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