时间:2021-07-01 10:21:17 帮助过:14人阅读
以下是fromkeys()方法的语法:
dict.fromkeys(seq[, value]))
参数
返回值
此方法返回列表。
例子
下面的例子显示fromkeys()方法的使用。
#!/usr/bin/python seq = ('name', 'age', 'sex') dict = dict.fromkeys(seq) print "New Dictionary : %s" % str(dict) dict = dict.fromkeys(seq, 10) print "New Dictionary : %s" % str(dict)
当我们运行上面的程序,它会产生以下结果:
New Dictionary : {'age': None, 'name': None, 'sex': None} New Dictionary : {'age': 10, 'name': 10, 'sex': 10}