习题3
一、选择题
1.以下不合法的表达式是(      )。D
A.x in [1,2,3,4,5]    B.x-6>5        C.e>5 and 4==f      D.3=a
2数学式2<x≤10表示成正确的Python表达式为(      )。B
A.2<x<=10              B.2<x and x<=10
C.2<x && x<=10          D.x>2 or x <=10
3.与关系表达式x==0等价的表达式是(      )。B
A.x=0          B.not x      C.x      D.x!=1
4.下列表达式的值为True的是(      )。A
A.2!=5 or 0          B.3>2>2      C.5+4j>2-3j      D.1 and 5==0
5.下面if语句统计“成绩(mark)优秀的男生以及不及格的男生”的人数,正确的语句为(      )C
A.if gender=="" and mark<60 or mark>=90:n+=1
B.if gender=="男" and mark<60 and mark>=90:n+=1
C.if gender=="" and (mark<60 or mark>=90):n+=1
D.if gender=="" or mark<60 or mark>=90:n+=1
6.以下if语句语法正确的是(      )。D
A.
if a>0:x=20
else:x=200
B
if a>0:x=20
else:
    x=200
C
if a>0:
    x=20
else:x=200
D.
if a>0
    x=20
else
    x=200
html5游戏简单吗
7.在Python中,实现多分支选择结构的较好方法是(      )。C
A.if          B.if-else      C.if-elif-else      D.if嵌套
8.下列语句执行后的输出是(      )。C
if 2:
    print(5)
else:
    print(6)
A.0            B.2          C.5          D.6
9.下面程序段求x和y中的较大数,不正确的是(      )D
A.maxNum=x if x>y else y
B.
if x>y:maxNum=x
else:maxNum=y
C.
maxNum=y
if x>y:maxNum=x
D.
if y>=x:maxNum=y
maxNum=x
concurrenthashmap和hashmap10.下列Python程序的运行结果是(      )B
python编程基础教程课后答案x=0
y=True
print(x>y and 'A'<'B')
A.True          B.False          C.true            D.false
二、填空题
1.表达式2<=1 and 0 or not 0的值是        True
2.已知ans='n',则表达式ans=='y' or 'Y'的值为        'Y'
3.Python提供了两个对象身份比较运算符              deselect是什么意思来测试两个变量是否指向同一个对象。is,is not
4.在直角坐标中,x、y是坐标系中任意点的位置,用x和y表示第一象限或第二象限的Python表达式为        x>0 and y>0 or x<0 and y>0
5.已知a=3,b=5,c=6,d=True,则表达式not d or a>=0 and a+c>b+3的值是        True
6.Python表达式16-2*5>7*8/2 or "XYZ"!="xyz" and not(10-6>18/2)的值为     
True
7.下列Python语句的运行结果是        True
x=True
y=False
z=False
print(x or y and z)
8.执行下列Python语句将产生的结果是        True False
m=True
n=False
p=True
b1=m|n^p;b2=n|m^p
print(b1,b2)
9.对于if语句中的语句,应将它们        缩进对齐
10.当x=0,y=50时,语句z=x if x else y执行后,z的值是        50
三、问答题
1.写出条件20<x<30或x<-100的Python表达式
2.Python实现选择结构的语句有哪些各种语句的格式是十么
3.下列两个语句各自执行后,x和y的值是多少它们的作用是什么
x=y=5
x=y==5
4.下列Python语句的运行结果为      no
x=False
y=True
z=False
if x or y and z:print("yes")
else:print("no")
5.下列Python语句的运行结果为      216位单片机float取值范围
x=True
y=False
z=True
if not x or y:print(1)
elif not x or not y and z:print(2)
elif not x or y or not y and x:print(3)
else:print(4)
6.说明以下三个if语句的区别。
语句一:
if i>0:
    if j>0:n=1
    else:n=2
语句二:
if i>0:
    if j>0:n=1
else:n=2
语句三:
if i>0:n=1
else:
    if j>0:n=2
arg是什么函数语句一相当于:
语句二相当于:
语句三相当于:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。