Quick actions

cmd+k|ctrl+k

Navigation

Languages

Python 3 字典类型:4

Snippet info

Language

Python

Visibility

public

Author

fenghestudio

Created

2019-11-24T09:17:06Z

Updated

2019-11-24T09:17:06Z

dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}

del dict['Name'] # 删除字典中的一个元素
dict.clear()     # 清空字典
del dict         # 删除字典对象

print ("dict['Age']: ", dict['Age'])
print ("dict['School']: ", dict['School'])
INFO