📜  python如何将字符串添加到列表的开头 - Python代码示例

📅  最后修改于: 2022-03-11 14:46:36.346000             🧑  作者: Mango

代码示例1
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.