📜  如何在 python 代码示例中使用列表

📅  最后修改于: 2022-03-11 14:47:21.989000             🧑  作者: Mango

代码示例6
seller = ['apple', 'banana', 'avocado'] # the list
new_item = 'kiwi' # new item in the store
seller.append(new_item) # now it's have been added to the list