can we use append method for items to the list code example
Example: append to lists python
list = [] ## Start as the empty list
list.append('a') ## Use append() to add elements
list.append('b')
list = [] ## Start as the empty list
list.append('a') ## Use append() to add elements
list.append('b')