how to append to code example
Example 1: append to list python
list = ["a"]
list.append("b")
print(list)
["a","b"]
Example 2: python append to list
#makes an empty list
List = []
#appends "exaple" to that list
List.append(example)
#removes "example" from that list
List.remove(example)