Deep LearningPython

【Python】PythonのDictionary(ディクショナリ)

Python

PythonのDictionary(ディクショナリ)を紹介します。

ターミナルでPythonのinteractive mode(対話モード)を起動します。

% python
Python 3.7.7 (default, Mar 10 2020, 15:43:33) 
[Clang 11.0.0 (clang-1100.0.33.17)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 
<div class="content">
  <p>リストは0から始まるインデックス番号で0、1、2…順番で値が格納されます。</p>
 <p>ディクショナリはキーと値をペアとしてデータを格納します。</p>
 <p>単語と意味が付けられて格納されます。</p>
</div>
>>> name ={'name': 180}      #ディクショナリを作成
>>> juju ={'age' : 19}                #要素にアクセス
>>> juju['age']
19
>>> juju['height'] = 170        #新しい要素を追加
>>> print(juju)
{'age': 19, 'height': 170}