gpt4 book ai didi

python - 如何从列表的行中添加单词/字符串?

转载 作者:行者123 更新时间:2023-12-05 08:28:46 24 4
gpt4 key购买 nike

output the Code

我正在尝试按顺序将列表 中的不同单词添加到行中。但是,我坚持下去。你能告诉我如何进行吗?我收到类型错误,无法获取输出。

我试图获得的输出:

it starts with: one or more.
it starts with: two or more.
it starts with: three or more.

我试过的代码:

a=["one","two","three"]

for i in a:
print("it starts with: " + a[i] + "or more")

我得到的结果:

TypeError: list indices must be integers or slices, not str

最佳答案

i 已经是你想要的元素了。

在 Python 中,表达式 for i in a 在每次循环时将数组 a 的元素分配给变量 i。您不需要处理这些元素。

for i in a:
print("it starts with: " + i + "or more")

关于python - 如何从列表的行中添加单词/字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75055918/

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