在 Python 字典中追加列表


有时,我们可能需要将列表存储为字典键的值,并且将来出于某种原因需要更新或向该列表添加更多元素。Python 提供了几种方法用于在 Python 字典中追加列表元素。在本文中,我们将为此目的使用内置方法 'append()'、'update()' 和 '+=' 运算符。

在 Python 字典中追加列表的程序

在直接跳到程序之前,让我们先熟悉 Python 中的列表和字典。

列表

它是一个有序且可变的元素集合。它类似于 C/C++ 和 Java 编程语言的数组。我们可以通过将元素放在方括号 '[ ]' 中并用逗号分隔来创建列表。

示例

Fruitlist = ["apple", "banana", "orange"]

字典

它是一个无序且可变的元素集合。它以键值对的形式存储其元素,其中每个键都与一个值相关联。我们可以通过将元素放在花括号 '{ }' 中作为 '键' : '值' 并用逗号分隔每个键值对来创建字典。

示例

Details = {"Tutor" : "Tutorialspoint", "Rank" : 01, "country" : "India"}

我们将使用以下方法在 Python 字典中追加列表

使用 append() 方法

此方法接受一个参数并将其添加到指定列表的末尾。它具有以下语法

语法

dictionary["key"].append("value")

方法

  • 初始化一个名为 'hobbies' 的字典,其中包含三个列表。它将名称映射到爱好。

  • 使用 append 方法向每个现有列表添加一个元素。

  • 现在,打印新字典并退出。

示例

Open Compiler
hobbies = { "Ram": ["reading", "painting"], "Shyam": ["gaming", "coding"], "Shiv": ["cooking", "biking"] } print("The original list of hobbies: ") print(hobbies) # Appending new elements to the list in dictionary hobbies["Ram"].append("singing") hobbies["Shyam"].append("chess") hobbies["Shiv"].append("gardening") print("New list of hobbies: ") print(hobbies)

输出

The original list of hobbies: 

{'Ram': ['reading', 'painting'], 'Shyam': ['gaming', 'coding'], 
'Shiv': ['cooking', 'biking']}
New list of hobbies: 
{'Ram': ['reading', 'painting', 'singing'], 'Shyam': ['gaming', 
'coding', 'chess'], 'Shiv': ['cooking', 'biking', 'gardening']}

使用 += 运算符

或者,我们可以使用 '+=' 运算符代替 'append()' 方法来向给定 Python 字典的列表中添加元素。此运算符等效于将右操作数添加到左操作数并将结果赋值回左操作数。

示例

Open Compiler
hobbies = { "Ram": ["reading", "painting"], "Shyam": ["gaming", "coding"], "Shiv": ["cooking", "biking"] } print("The original list of hobbies: ") print(hobbies) # Appending new elements to the list in dictionary hobbies["Ram"] += ["singing"] hobbies["Shyam"] += ["chess"] hobbies["Shiv"] += ["gardening"] print("New list of hobbies: ") print(hobbies)

输出

The original list of hobbies: 

{'Ram': ['reading', 'painting'], 'Shyam': ['gaming', 'coding'], 
'Shiv': ['cooking', 'biking']}
New list of hobbies: 
{'Ram': ['reading', 'painting', 'singing'], 'Shyam': ['gaming', 
'coding', 'chess'], 'Shiv': ['cooking', 'biking', 'gardening']}
Note that we have to use the square brackets '[ ]' to wrap the 
element we want to append to a list. The reason behind this is 
the += operator expects both operands to be of the same type. 

请注意,我们必须使用方括号 '[ ]' 将我们要追加到列表的元素括起来。这样做的原因是 += 运算符期望两个操作数具有相同的类型。

使用 update() 方法

此方法不返回值。它只是将指定的字典添加到另一个现有字典中。它具有以下语法

语法

dictionary1.update(dictionary2)

方法

  • 初始化一个名为 'hobbies' 的字典,其中三个键具有空值列表。

  • 现在,使用 update 方法将值列表追加到现有的空列表中。

  • 现在,打印新字典并退出。

示例

Open Compiler
# creating dictionary with empty list hobbies = { "Ram": [], "Shyam": [], "Shiv": [] } print("The original list of hobbies: ") print(hobbies) # Appending new elements to the list in dictionary hobbies.update({"Ram" : ["singing"]}) hobbies.update({"Shyam" : ["chess"]}) hobbies.update({"Shiv" : ["gardening"]}) print("New list of hobbies: ") print(hobbies)

输出

The original list of hobbies: 
{'Ram': [], 'Shyam': [], 'Shiv': []}
New list of hobbies: 
{'Ram': ['singing'], 'Shyam': ['chess'], 'Shiv': ['gardening']}

结论

在本文中,我们学习了如何在 Python 字典中向现有列表追加新元素。我们已经看到了三种执行此操作的方法:使用 append() 和 update() 方法,以及使用 += 运算符。它们都就地修改原始字典。我们还发现了 Python 中列表和字典的基础知识。

更新于: 2023-07-21

969 次查看

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告