若score值为80,以下程序输出结果为:( )if score>=60:grade="D"elif score>=70:grade="C"elif score>=80:grade="B"else:grade="A"print(grade)
查看答案
在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. 程序报错
请输入两个数a,b,输出其较大的值,下面选项正确的是()a=int(input(“请输入一个整数:”))b=int(input(“请输入另一个整数:”))
A. if a>bprint(a)elseprint(b)
B. if a>b:print(a)else print(b)
C. print(a) if a>b: else: print(b)
D. print(a) if a>b else print(b)