logo

Python dict() 関数

Python dict() 関数は辞書を作成するコンストラクターです。 Python 辞書には、辞書を作成するための 3 つの異なるコンストラクターが用意されています。

  • 引数が渡されない場合は、空の辞書が作成されます。
  • 位置引数が指定された場合、同じキーと値のペアを使用して辞書が作成されます。それ以外の場合は、反復可能なオブジェクトを渡します。
  • キーワード引数が指定されている場合、キーワード引数とその値は、位置引数から作成された辞書に追加されます。

サイン

 dict ([**kwargs]) dict ([mapping, **kwargs]) dict ([iterable, **kwargs]) 

パラメーター

クワーグス : キーワード引数です。

Javaの乱数

マッピング :別の辞書です。

反復可能な : これは、キーと値のペアの形式の反復可能なオブジェクトです。

戻る

辞書を返します。

dict() 関数の機能を理解するために、関数の例をいくつか見てみましょう。

Python dict() 関数の例 1

空または空ではない辞書を作成する簡単な例。辞書の引数はオプションです。

 # Python dict() function example # Calling function result = dict() # returns an empty dictionary result2 = dict(a=1,b=2) # Displaying result print(result) print(result2) 

出力:

Java文字列置換
 {} {'a': 1, 'b': 2} 

Python dict() 関数の例 2

 # Python dict() function example # Calling function result = dict({'x': 5, 'y': 10}, z=20) # Creating dictionary using mapping result2 = dict({'x': 5, 'y': 10, 'z':20}) # Displaying result print(result) print(result2) 

出力:

 {'x': 5, 'z': 20, 'y': 10} {'x': 5, 'z': 20, 'y': 10} 

Python dict() 関数の例 3

 # Python dict() function example # Calling function result = dict([(1, 'One'), [2, 'Two'], [3,'Three']]) # Creating using iterable result2 = dict([['x','X'],('y','Y')]) # Displaying result print(result) print(result2) 

出力:

 {1: 'One', 2: 'Two', 3: 'Three'} {'y': 'Y', 'x': 'X'}