gpt4 book ai didi

python - 将字符串插入列表而不拆分为字符

转载 作者:IT老高 更新时间:2023-10-28 21:07:42 26 4
gpt4 key购买 nike

我是 Python 新手,找不到将字符串插入列表而不将其拆分为单个字符的方法:

>>> list=['hello','world']
>>> list
['hello', 'world']
>>> list[:0]='foo'
>>> list
['f', 'o', 'o', 'hello', 'world']

我应该怎么做:

['foo', 'hello', 'world']

搜索了文档和网络,但今天不是我的日子。

最佳答案

添加到列表末尾:

list.append('foo')

在开头插入:

list.insert(0, 'foo')

关于python - 将字符串插入列表而不拆分为字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8243188/

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