📜  使用键创建字典 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:34.525000             🧑  作者: Mango

代码示例1
#creating a dictionary using the keys
d1=dict.fromkeys((1,7,6,5,8,9),'present')
print(d1)
d1[15]='absent'
print(d1)