📌  相关文章
📜  如何在 python 代码示例中的列表中添加项目

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

代码示例1
# To add items to a list, we use the '.append' method. Example:
browsers_list = ['Google', 'Brave', 'Edge']
browsers_list.append('Firefox')
print(browsers_list) # Output will be ['Google', 'Brave', 'Edge', 'Firefox']