该患者不存在( )
该患者不存在( )
相关考题:
某患者,7岁。已入住ICU2天,入科时APACHEⅡ评分21分,SOFA评分5分,有急性肾功能不全,白细胞介素-6(IF-6)411(Pg/ml),下列说法正确的是()。 A、该患者NUTRIC评分5分,提示存在营养风险B、该患者NUTRIC评分6分,提示存在营养风险C、该患者NUTRIC评分6分,提示不存在营养风险D、患者NUTRIC评分3分,提示存在营养风险E、该患者NUTRIC评分3分,提示不存在营养风险
5、已知字典 dic={'小欣':90, '小蕊':92, '小微':87},存放了学生的姓名及成绩。假设变量user存放了某学生的姓名,则以下哪个程序不能够实现功能:在字典中查询该学生信息是否存在,如果存在,输出其成绩,否则输出'该学生不存在!'A.if dic.get(user,'error')=='error': print('该学生不存在!') else: print(dic[user])B.if user in dic: print(dic[user]) else: print('该学生不存在!')C.if user not in dic: print('该学生不存在!') else: print(dic[user])D.if dic.count(user)==0: print('该学生不存在!') else: print(dic[user])