题目内容

执行下列Python语句将产生的结果是()。i=1if(i):print(True)else:print(False)

A. 输出1
B. 输出True
C. 输出Flase
D. 编译错误

查看答案
更多问题

下面的if语句统计满足“性别(gender)为男、职称(rank)为教授、年龄(age)小于40岁”条件的人数,正确的语句为()。

A. if(gender==”男” or age<40 and rank==”教授”):n+=1
B. if(gender==”男” and age<40 and rank==”教授”):n+=1
C. if(gender==”男” and age<40 or rank==”教授”):n+=1
D. if(gender==”男” or age<40 or rank==”教授”):n+=1

下面的程序段求x和y两个数中的大数,下列哪项是不正确的()。

A. maxNum=x if x>y else y
B. maxNum=math.max(x,y)
C. if(x>y):maxNum=xelse: maxNum=y
D. if(y>=x):maxNum=yelse: maxNum=x

下面的if语句统计“成绩(score)优秀的男生以及不及格的男生”的人数,正确的语句为()。

A. if(gender==”男” and score<60 or score>=90):n+=1
B. if(gender==”男” and score<60 and score>=90):n+=1
C. if(gender==”男” and (score<60 or score>=90)):n+=1
D. if(gender==”男” or score<60 or score>=90):n+=1

Are you willing to stand up in court and _______ that you do not recognize him?

答案查题题库