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() 方法