このプログラムは "Pythonで退屈なものを自動化する"からのものです。私は価値は、私たちが直接キーを追加することができます辞典からPythonで退屈なものを自動化
としてキーと「BDAY」と「名前」を取るように指示しますどのような、参考のためを辞書に値
birthdays = {'Alice': 'Apr 1', 'Bob': 'Dec 12', 'Carol': 'Mar 4'}
while True:
print('Enter a name: (blank to quit)')
name = input()
if name == '':
break
if name in birthdays:
print(birthdays[name] + ' is the birthday of ' + name)
else:
print('I do not have birthday information for ' + name)
print('What is their birthday?')
bday = input()
birthdays[name] = bday
print('Birthday database updated.')
ありがとうございました! – MUSR