how to ammend on python code example
Example 1: python add to list
list_to_add.append(item_to_add)
Example 2: append to lists python
list = [] ## Start as the empty list
list.append('a') ## Use append() to add elements
list.append('b')