改为三木运算:dict1 = {'name': 'zhangsan', 'age': 18} if dict1.__contains__('sex') is True: print('存在sex这个字段') else: dict1['sex'] = '男'
时间: 2024-01-24 20:04:35 浏览: 112
dict1 = {'name': 'zhangsan', 'age': 18} if dict1.__contains__('sex') else (print('存在sex这个字段') if dict1.__contains__('sex') is True else dict1.update({'sex': '男'}))
阅读全文