阅读下面的程序,程序最终的执行结果为( )。a=0b=10if (a or b) and b:print("结果为true")else:print("结果为false")
A. 结果为true
B. 结果为false
C. 程序出现编译错误
D. 没有任何输出
查看答案
若score值为80,以下程序输出结果为:( )if score>=60:grade="D"elif score>=70:grade="C"elif score>=80:grade="B"else:grade="A"print(grade)
A
B. D
C
D. B
在python中,数学表达式-1 < x < 1,表示成python表达式,错误的是()。
A. 1> x and x > -1
B. 1> x or x > -1
C. -1 < x and x < 1
D. -1 < x < 1
True - False的输出结果是 ( )
A. -1
B. 1
C. 0
D. True
下面代码的输出结果是()a = 1.0if isinstance(a,int):print("{} is int".format(a))else:print("{} is not int".format(a))
A. 1.0 is not int
B. 1.0 is int
C. 无输出
D. 程序报错