Pythonで作成した辞書の中身を出力したいです。
期待値としては下記の通りなのですが
Kazu 26
下記のように出力されてしまいます。
{'Kazu': 26}
プログラムは下記のとおりです。修正方法を教えていただきたいです。お願いします。
N = int(input())
list = []
dictionay = {}
for count in range(N):
a,b=(str(x) for x in input().split())
if a.isalpha() == True and 18<=int(b)<=120: list.append(a) dictionay.setdefault(a,int(b)+1)
print(dictionay)
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/11 09:14
2020/08/11 09:15