# list.insert(before, value) list = ["a", "b"] list.insert(1, "c") print(list) # ['a', 'c', 'b'] # at the end: list.append(value) list.append("d") # ['a', 'c', 'b', 'd']