001、
>>> list1 ## 测试列表 [1, 2, 3, 4, 5] >>> list1.insert(-1,"xxx") ## 在列表最后以为之前插入数据 >>> list1 [1, 2, 3, 4, 'xxx', 5] >>> list1.insert(-2,"kkk") ## 在列表最后两位之前插入数据 >>> list1 [1, 2, 3, 4, 'kkk', 'xxx', 5]
标签:插入,python,最后,xxx,list1,列表,## From: https://www.cnblogs.com/liujiaxin2018/p/16837040.html