Python 字典 Dictionary fromkeys()方法
Python 字典 Dictionary fromkeys()方法
Python 字典 fromkeys() 函数用于创建一个新字典,以序列 seq 中元素做字典的键,value 为字典所有键对应的初始值。
语法
fromkeys()方法语法:
dict.fromkeys(seq[, value])
参数
- seq -- 字典键值列表。
- value -- 可选参数, 设置键序列(seq)的值。
返回值
该方法返回一个新字典。
实例
以下实例展示了 fromkeys()函数的使用方法:
#!/usr/bin/python # -*- coding: UTF-8 -*- seq = ('Google', 'codebaoku', 'Taobao') dict = dict.fromkeys(seq) print "新字典为 : %s" % str(dict) dict = dict.fromkeys(seq, 10) print "新字典为 : %s" % str(dict)
以上实例输出结果为:
新字典为 : {'Google': None, 'Taobao': None, 'codebaoku': None} 新字典为 : {'Google': 10, 'Taobao': 10, 'codebaoku': 10}
相关文章
- Python break 语句
- Python 字典 Dictionary
- Python CGI编程
- Python XML 解析
- Python 数组
- Python 集合
- Python Deque
- Python3 元组(Tuple)
- Python log10() 函数
- Python pow() 函数
- Python os.lchown() 方法
- Python os.link() 方法
- Python os.popen() 方法
- Python os.tempnam() 方法
- Python decode()方法
- Python rstrip()方法
- Python List cmp()方法
- Python List len()方法
- Python 字典 Dictionary fromkeys()方法
- Python time strftime() 方法