append to the list python 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 list append

# Python list mutation, adding elements
history = ["when"]

# adds item to the end of a list
history.append("how")
# ["when", "how"]

# combine lists
history.extend( ["what", "why"] ) # works with tuples too
# or
history = history + ["what", "why"]
# ["when", "how", "what", "why"]

# insert at target position
history.insert(3, "where")
# ["when", "how, "what", "where", "why"]
#

Example 3: lsit append in python

List=[1,'a',"hello"]
List.append(True)
print(List)
# output: [1, 'a', 'hello', True]

Example 4: what is append use

it=[]
for i in range(11):
  it.append(i)
  print(i)