gpt4 book ai didi

python - 将字符串添加到列表中的字符串

转载 作者:行者123 更新时间:2023-11-28 22:48:49 25 4
gpt4 key购买 nike

我有一个包含各种字符串的列表,我希望能够在列表中选择一个特定元素,并将它与一个新字符串连接起来。

我认为这可以做到:

checklist = [[0] + 'test' for [0] in checklist]

但它不起作用。有什么建议吗?

最佳答案

使用其索引选择字符串并使用+ 运算符将字符串添加到它

checklist = ['a','b','c']
checklist[1] += 'd'
print checklist
#['a', 'bd', 'c']

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

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