在列表中插入元素 insert()
word = ['a','b','c','d']word.insert(1,'xxx')print(word)
打印结果:['a', 'xxx', 'b', 'c', 'd']