阅读下面的一段程序:score=78ifscore>=0andscore<=100:ifscore>=80andscore<=100:print("优")elifscore>=60andscore<80:print("良")elifscore>=0andscore<60:print("差")else:print("无效数字")运行程序后,最终执行的结果为()。
A. 优
B. 良
C. 差
D. 无效数字
当无法确定被装饰函数参数的个数及类型时,可以使用()参数进行传递。
A. 不定长
B. 默认
C. 形参
D. 位置
下列Python语句中,符合语法要求的是( )。
A. min = x if x > y: min=y
B. max = x > y ? x : y
C. if (x > y) print x
D. while True:pass
Python创始人Guido van Rossum是( )国人。
A. 中国
B. 英国
C. 荷兰
D. 美国