📜  如何在列表中附加元素

📅  最后修改于: 2020-10-28 01:48:37             🧑  作者: Mango

如何在列表中追加元素

Python提供了内置方法来将元素追加或添加到列表中。我们还可以将一个列表追加到另一个列表中。这些方法在下面给出。

  • append(elmt)-将值追加到列表的末尾。
  • insert(index,elmt)-将值插入指定的索引位置。
  • extend(iterable)-通过添加可迭代对象来扩展列表。

让我们通过以下示例了解这些方法。

1.append( )

此函数用于将元素添加到列表的末尾。下面给出示例。

范例-

names = ["Joseph", "Peter", "Cook", "Tim"]

print('Current names List is:', names)

new_name = input("Please enter a name:\n")
names.append(new_name)  # Using the append() function

print('Updated name List is:', names)

输出:

Current names List is: ['Joseph', 'Peter', 'Cook', 'Tim']
Please enter a name:
Devansh
Updated name List is: ['Joseph', 'Peter', 'Cook', 'Tim', 'Devansh']

2. insert(index,elmt)

insert()函数将元素添加到给定的索引位置。当我们想要在特定位置插入元素时,这是有益的。下面给出示例。

范例-

list1 = [10, 20, 30, 40, 50]

print('Current Numbers List: ', list1)

el = list1.insert(3, 77)
print("The new list is: ",list1)

n = int(input("enter a number to add to list:\n"))

index = int(input('enter the index to add the number:\n'))

list1.insert(index, n)

print('Updated Numbers List:', list1)

输出:

Current Numbers List:  [10, 20, 30, 40, 50]
The new list is:  [10, 20, 30, 77, 40, 50]
enter a number to add to list:
 45
enter the index to add the number:
1
Updated Numbers List: [10, 45, 20, 30, 77, 40, 50]

3.extend()

extend()函数用于将可迭代元素添加到列表中。它接受可迭代对象作为参数。以下是添加可迭代元素的示例。

范例-

list1 = [10,20,30]
list1.extend(["52.10", "43.12" ])  # extending list elements
print(list1)
list1.extend((40, 30))  # extending tuple elements
print(list1)
list1.extend("Apple")  # extending string elements
print(list1)

输出:

[10, 20, 30, '52.10', '43.12']
[10, 20, 30, '52.10', '43.12', 40, 30]
[10, 20, 30, '52.10', '43.12', 40, 30, 'A', 'p', 'p', 'l', 'e']