python 列表中插入其他元素的方法
可以用append,extend和insert
其中,append、extend是在最后插入,extend可以把列表以元素的形式添加到指定列表中。
insert插入位置随意。list1=['a','b','c','c']
list1.append('time')
print(list1)
list1=['a','b','c','c']
list1.append(['time'])
print(list1)
list1=['a','b','c','c']
list1.extend(['time','test'])
print(list1)
list1=['a','b','c','c']
list1.insert(0,'time')
print(list1)
结果分别为:
['a', 'b', 'c', 'c', 'time']
['a', 'b', 'c', 'c', ['time']]
['a', 'b', 'c', 'c', 'time', 'test']
['time', 'a', 'b', 'c', 'c']
参考:https://jingyan.baidu.com/article/da1091fb7ce94c027849d60b.html
|