ファイルを解析していて、ユーザーが選択した名前と値を含む辞書を作成したいと思います。私にはたくさんの名前があるので、ユーザーが年齢を選択する名前をユーザーに示したいと思います。
Choose the age of Jack
choose the age of Kate
...
これが私が書いたコードです:
list_param = {}
for param in o["persons"]:
list_param.update({param["name"]: input("choose the age of", param["name"], " :\n" )})
このエラーが発生します:
TypeError: [raw_]input expected at most 1 arguments, got 3
どうすれば修正できますか?
前もって感謝します