在Python中初始化一个空字典
字典 在Python中是数据值的无序集合,用于像地图一样存储数据值,与其他仅将单个值作为元素保存的数据类型不同,字典包含键:值对。字典中提供了键值,使其更加优化。
现在,让我们看看创建空字典的不同方法。
方法一:使用{ }符号。
我们可以通过在赋值语句中的大括号中不给出任何元素来创建一个空字典对象
代码:
Python3
# Python3 code to demonstrate use of
# {} symbol to initialize dictionary
emptyDict = {}
# print dictionary
print(emptyDict)
# print length of dictionary
print("Length:", len(emptyDict))
# print type
print(type(emptyDict))
Python3
# Python3 code to demonstrate use of
# dict() built-in function to
# initialize dictionary
emptyDict = dict()
# print dictionary
print(emptyDict)
# print length of dictionary
print("Length:",len(emptyDict))
# print type
print(type(emptyDict))
输出
{}
Length: 0
方法二:使用dict()内置函数。
空字典也由 dict() 内置函数创建,不带任何参数。
代码:
Python3
# Python3 code to demonstrate use of
# dict() built-in function to
# initialize dictionary
emptyDict = dict()
# print dictionary
print(emptyDict)
# print length of dictionary
print("Length:",len(emptyDict))
# print type
print(type(emptyDict))
输出
{}
Length: 0