当前分类:300例题>>正文

Python示例:向字典添加键值对

来源:互联网   更新时间:2023年6月23日  

Python 示例

编写一个 Python示例,通过一个实际例子将键值对添加到字典中。

向字典添加键值对的 Python示例示例 1

在这个 python 程序中,我们使用字典更新功能将键值插入到字典中。

# Python Program to Add Key-Value Pair to a Dictionary

key = input("Please enter the Key : ")
value = input("Please enter the Value : ")

myDict = {}

# Add Key-Value Pair to a Dictionary in Python
myDict.update({key:value})
print("\nUpdated Dictionary = ", myDict)

将键值对插入字典的 Python示例示例 2

这个 Python示例是将键值插入字典的另一种方法。

# Python Program to Add Key-Value Pair to a Dictionary

key = input("Please enter the Key : ")
value = input("Please enter the Value : ")

myDict = {}

# Add Key-Value Pair to a Dictionary in Python
myDict[key] = value
print("\nUpdated Dictionary = ", myDict)

向字典输出添加键值对

Please enter the Key : M
Please enter the Value : Mango

Updated Dictionary =  {'M': 'Mango'}
本文固定链接:https://6yhj.com/leku-p-4434.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 百度文库