Python 字典 Dictionary fromkeys()方法
Python 字典 Dictionary fromkeys()方法
Python 字典 fromkeys() 函數(shù)用于創(chuàng)建一個(gè)新字典,以序列 seq 中元素做字典的鍵,value 為字典所有鍵對(duì)應(yīng)的初始值。
語(yǔ)法
fromkeys()方法語(yǔ)法:
dict.fromkeys(seq[, value])
參數(shù)
- seq -- 字典鍵值列表。
- value -- 可選參數(shù), 設(shè)置鍵序列(seq)的值。
返回值
該方法返回一個(gè)新字典。
實(shí)例
以下實(shí)例展示了 fromkeys()函數(shù)的使用方法:
#!/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)
以上實(shí)例輸出結(jié)果為:
新字典為 : {'Google': None, 'Taobao': None, 'codebaoku': None} 新字典為 : {'Google': 10, 'Taobao': 10, 'codebaoku': 10}
相關(guān)文章
- Python break 語(yǔ)句
- Python 字典 Dictionary
- Python CGI編程
- Python XML 解析
- Python 數(shù)組
- Python 集合
- Python Deque
- Python3 元組(Tuple)
- Python log10() 函數(shù)
- Python pow() 函數(shù)
- 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() 方法