append list in python 3 code example
Example 1: 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)
Example 2: python append to list
a = [1, 2, 3, 4, 5]
# Let's add 6 to the list called a
a.append(6)