辞書に項目が存在してるかのチェック
top
python3
memo
dict_check
inを使うとdict型にその項目がいるかどうか確かめられる
lists = { 'id': 4 } if( 'id' in lists ): print('Have id')
top
python3
memo
dict_check