-->
当前位置:首页 > 题库

单选题:以下程序输出结果为( )。```score = 70if score < 70: if score > 60:

Luz5年前 (2021-06-19)题库1023
以下程序输出结果为( )。
```
score = 70
if score < 70:
    if score > 60:
        print("OK")
    else:
        print("Effort")
else:
    if score < 70:
        print("Good")
    else:
        print("Excellent")

```
。
@[D](2)

A. OK
B. Effort
C. Good
D. Excellent



A.OK
B.Effort
C.Good
D.Excellent


答案:D