1. 程式人生 > >python fromkeys() 建立字典

python fromkeys() 建立字典

 

# d = dict.fromkeys("張無忌","趙敏") #建立字典
# print(d)#{'': '趙敏', '': '趙敏', '': '趙敏'}
# 返回新字典,和原來的字典沒有關係
# dic = {}
# d = dic.fromkeys("風扇哥","很困")
# print(dic)# {}
# print(d)#{'': '很困', '': '很困', '': '很困'}