Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
G'day All、
私の最後の質問の後、私はjsonモジュールを使用することを自分自身に教えていて、この問題に直面しました。
なじみのない配列が与えられた場合:
{"Age": 20, "Nickname": "Jim", "Name": "Fred", "Height": 180}
このオブジェクトでキーを見つけるにはどうすればよいですか?
ありがとう、
>>> d = {"Age": 20, "Nickname": "Jim", "Name": "Fred", "Height": 180} >>> d.keys() ['Age', 'Nickname', 'Name', 'Height']
または、さらに簡単に、反復する場合は次のようにします。
>>> for k in d: ... print k ... Age Nickname Name Height