Python List insert() Python List sort() Python List index() Python List insert() 在本教程中,我们将了解Python List的插入方法。Python List插入方法用于将元素插入到列表中的指定索引处。 Python 列表插入语法 list1.insert(index, element) 这里 list1 是列表的对象。 list1.insert(1, 'hello'): 此代码将'hello'字符串添加到list1的第一个索引。请注意Python索引从0而不是1开始。 Python 列表插入示例 您可以简单地使用 insert 方法将元素添加到指定索引处的列表中。 让我们借助简单的例子来理解这一点。 listOfItems=['Book','Table','TV'] listOfItems.insert(1,'Chair') print(listOfItems) 输出: [‘Book’, ‘Chair’, ‘Table’, ‘TV’] 正如您在输出中看到的那样,'Chair' 字符串被添加到 listOfItems 的第 1 个索引处。 您可以使用插入方法将集合、元组添加到列表中。让我们在示例的帮助下看到这一点。 listOfItems=['Book','Table','TV'] listOfItems.insert(2,('Car','Cycle')) print(listOfItems) 输出: [‘Book’, ‘Table’, (‘Car’, ‘Cycle’), ‘TV’] 这就是 Python List 插入方法的全部内容。 Python List sort() Python List index()