python how to add a string to a list in the beginning code example

Example: python how to add a string to a list in the begining

listexample['exampleone', 'examplethree']
listexample.insert(0, 'exampletwo')
print(listexample)
#prints ['exampletwo', 'exampleone', 'examplethree']
#Use the insert() method when you want to add data to the beginning or middle of a list. 
#Take note that the index to add the new element is the first parameter of the method.