We add a value to a specific index with insert(). By coding insert(0, "lemon"), we'll add the value to the start of the list.
>>> shopping = ["apple","pear"]
>>> shopping
['apple', 'pear']
>>> shopping.insert(0,"lemen")
>>> shopping
['lemen', 'apple', 'pear']