📌  相关文章
📜  如何在python中将单词添加到列表中(1)

📅  最后修改于: 2023-12-03 14:52:49.860000             🧑  作者: Mango

如何在Python中将单词添加到列表中

在Python中,要将单词添加到列表中,可以使用 append() 方法。append() 方法可将元素添加到现有列表的末尾。

代码示例:

words_list = ['apple', 'banana', 'cherry']
words_list.append('orange')
print(words_list)

输出结果:

['apple', 'banana', 'cherry', 'orange']

此外,还可以使用加号(+)运算符将两个列表合并:

list_1 = ['a', 'b', 'c']
list_2 = ['d', 'e', 'f']
new_list = list_1 + list_2
print(new_list)

输出结果:

['a', 'b', 'c', 'd', 'e', 'f']

总结:使用 append() 方法可以将单词添加到列表中。使用加号(+)运算符可将两个列表合并。