list.insert(index, element)
thislist = ["apple", "banana", "cherry"] thislist.insert(1, "orange")
my_list = [] item1 = "test1" my_list.append(item1) print(my_list) # prints the list ["test1"]
hello