gpt4 book ai didi

python - 将字符串添加到 python 列表的每个元素

转载 作者:太空宇宙 更新时间:2023-11-03 12:53:15 24 4
gpt4 key购买 nike

我有一个由 py​​thon 字典键组成的列表; list(dict.keys()).

dict.keys()
dict_keys(['South', 'North'])

我想向 list = ['South', 'North'] 中的每个元素添加一个字符串,例如:

my_string = 'to_'

最后我想要 list = ['to_South', 'to_North']

我可以使用什么方法吗?

类似于:

list.add_beginning_of_each_element('to_')

最佳答案

使用 list comprehension :

lst = ['South', 'North']
result = ['to_' + direction for direction in lst]

作为替代方案,您可以使用 map :

def add_to_beginning(s, start='to_'):
return start + s

lst = ['South', 'North']

result = list(map(add_to_beginning, lst))
print(result)

关于python - 将字符串添加到 python 列表的每个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53632318/

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