【Python3】dictionary

キーが存在するかどうか

_data = { ‘keyname’, ‘1234’ }

if 'keyname' in _data:
   ...

True/False

Leave a Reply