【Python】辞書に含まれるキーと値を取得する方法について書いていく
1.辞書の「キー」の取得方法(2種類) keys()
①keys()を使わなくてもキーは取れる
drink = {'c': 'coffee', 'o': 'orange', 't': 'tea'}
for a in drink:
print(a)
実行結果
c
o
t
②keys()を使ったキーの取得
drink = {'c': 'coffee', 'o': 'orange', 't': 'tea'}
for a in drink.keys(): # drinkの後ろに、keys()を入れるだけの違い
print(a)
実行結果
c
o
t
2.辞書に含まれる値を取得 values()
drink = {'c': 'coffee', 'o': 'orange', 't': 'tea'}
for a in drink.values():
print(a)
実行結果
coffee
orange
tea
3.キーと値をどちらも取得 items()
drink = {'c': 'coffee', 'o': 'orange', 't': 'tea'}
for b, c in drink.items():
print(b, c)
実行結果
c coffee
o orange
t tea