Python
 Computer >> コンピューター >  >> プログラミング >> Python

Python-辞書のマッピングを反転する方法


辞書は、順序付けられておらず、変更可能で、索引付けされているコレクションです。 Pythonでは、辞書は中括弧で記述され、キーと値があります。日常のプログラミング、ウェブ開発、機械学習で広く使用されています。

# using dict comprehension
# initialising dictionary
ini_dict = {101: "vishesh", 201 : "laptop"}
# print initial dictionary
print("initial dictionary : ", str(ini_dict))
# inverse mapping using dict comprehension
inv_dict = {v: k for k, v in ini_dict.items()}
# print final dictionary
print("inverse mapped dictionary : ", str(inv_dict))
# using zip and dict functions
# initialising dictionary
ini_dict = {101: "vishesh", 201 : "laptop"}
# print initial dictionary
print("initial dictionary : ", str(ini_dict))
# inverse mapping using zip and dict functions
inv_dict = dict(zip(ini_dict.values(), ini_dict.keys()))
# print final dictionary
print("inverse mapped dictionary : ", str(inv_dict))
# using map and reversed
# initialising dictionary
ini_dict = {101: "akshat", 201 : "ball"}
# print initial dictionary
print("initial dictionary : ", str(ini_dict))
# inverse mapping using map and reversed
inv_dict = dict(map(reversed, ini_dict.items()))
# print final dictionary
print("inverse mapped dictionary : ", str(inv_dict))
# using lambda
# initialising dictionary
ini_dict = {101 : "akshat", 201 : "ball"}
# print initial dictionary
print("initial dictionary : ", str(ini_dict))
# inverse mapping using lambda
lambda ini_dict: {v:k for k, v in ini_dict.items()}
# print final dictionary
print("inverse mapped dictionary : ", str(ini_dict))

出力

('initial dictionary : ', "{201: 'laptop', 101: 'vishesh'}")
('inverse mapped dictionary : ', "{'laptop': 201, 'vishesh': 101}")
('initial dictionary : ', "{201: 'laptop', 101: 'vishesh'}")
('inverse mapped dictionary : ', "{'laptop': 201, 'vishesh': 101}")
('initial dictionary : ', "{201: 'ball', 101: 'akshat'}")
('inverse mapped dictionary : ', "{'ball': 201, 'akshat': 101}")
('initial dictionary : ', "{201: 'ball', 101: 'akshat'}")
('inverse mapped dictionary : ', "{201: 'ball', 101: 'akshat'}")

  1. Pythonマッピングタイプ

    マッピングオブジェクトは、ハッシュテーブルの値を任意のオブジェクトにマッピングするために使用されます。 Pythonには、辞書と呼ばれるマッピングタイプがあります。 。変更可能です。 辞書のキーは任意です。値として、リスト、整数、その​​他の可変型オブジェクトなど、さまざまな種類の要素を使用できます。 辞書に関連するいくつかのメソッドと操作は次のとおりです- メソッドlen(d) len()メソッドは、ディクショナリ内の要素の数を返します。 操作d[k] キー「k」を持つdのアイテムを返します。 KeyErrorが発生する可能性があります キーがマップされていない場合。 メソッドi

  2. Pythonの辞書メソッド

    以下に示すPythonの辞書メソッドがいくつかあります- Sr.No メソッドの名前と説明 1 Python辞書clear() すべてのアイテムをクリアする 2 Python辞書copy() 辞書のコピー 3 keys()からのPython辞書 指定されたシーケンスから辞書を作成します 4 Pythonディクショナリget() キーの価値を得る 5 Python辞書items() 辞書のアイテムの表示 6 Python辞書keys() すべてのキーを表示 7