Python: Adding items to a List
Today we will learn how we can add items to a list in Python.
Let's imagine you have a list in python, a list of all the groceries you want to buy for your week.
groceries = ['Milk', 'Bread', 'Oranges', 'Apples', 'Biscuit']
Now imagine you want to ad...
yashrahurikar.hashnode.dev2 min read