list append method code example
Example 1: append to list python
list = ["a"]
list.append("b")
print(list)
["a","b"]
Example 2: python append to list
stuff = ["apple", "banana"]
stuff.append("carrot")
# Print to see if it worked
print(stuff)
# You can do it with a variable too
whatever = "pineapple"
stuff.append(whatever)
# Print it again
print(stuff)
Example 3: 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 4: opython append list
list.append(item)