好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

python 快速创建字典 fromkes()

作用:快速创建字典

特点:共用value

seq = [‘google‘, ‘ie‘, ‘firefox‘]
# seq为可迭代对象(str, list, tuple, dict, set)
dic = dict.fromkeys(seq)
print(dic)      # {‘google‘: None, ‘ie‘: None, ‘firefox‘: None}

dic2 = dict.fromkeys(seq, 10)
print(dic2)     # {‘google‘: 10, ‘ie‘: 10, ‘firefox‘: 10}

查看更多关于python 快速创建字典 fromkes()的详细内容...

  阅读:19次