gpt4 book ai didi

python - 将字符串连接到列表

转载 作者:太空宇宙 更新时间:2023-11-04 04:36:31 25 4
gpt4 key购买 nike

<分区>

我在 Jupyter Notebook 中运行了以下代码:

list_1 = []
list_1 += "cat"
print(list_1)

得到如下输出:

['c', 'a', 't']

但是当我运行这个时:

list_1 = []
list_1 = list_1 + "cat"
print(list_1)

它给出了以下错误:

TypeError: can only concatenate list (not "str") to list

我没能理解这两种方法,一个字符串被添加到列表中。

导致该错误的是与“+=”表示法有关还是与列表和字符串的连接有关?

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