Python Insérer un objet dans la liste

# 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']
VasteMonde