Python 字典(Dictionary) fromkeys()方法

2021-09-06 14:20 更新

Python 字典(Dictionary) fromkeys()方法


描述

Python 字典(Dictionary) fromkeys() 函數(shù)用于創(chuàng)建一個(gè)新字典,以序列seq中元素做字典的鍵,value為字典所有鍵對應(yīng)的初始值。

語法

fromkeys()方法語法:

dict.fromkeys(seq[, value]))

參數(shù)

  • seq -- 字典鍵值列表。
  • value -- 可選參數(shù), 設(shè)置鍵序列(seq)的值。

返回值

該方法返回列表。

實(shí)例

以下實(shí)例展示了 fromkeys()函數(shù)的使用方法:

#!/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)

以上實(shí)例輸出結(jié)果為:

New Dictionary : {'age': None, 'name': None, 'sex': None}
New Dictionary : {'age': 10, 'name': 10, 'sex': 10}
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號