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