gpt4 book ai didi

python - 在遍历可变容器(例如列表)时更改 python 不可变类型

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

我想知道执行以下操作并让它工作的最 pythonic 方法是什么:

strings = ['a','b']

for s in strings:
s = s+'c'

显然这在 python 中不起作用,但我想要实现的结果是
字符串 = ['ac','bc']
实现这种结果的最pythonic方法是什么?

感谢您的精彩回答!

最佳答案

strings = ['a', 'b']
strings = [s + 'c' for s in strings]

关于python - 在遍历可变容器(例如列表)时更改 python 不可变类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4234298/

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