score = 90
if score >= 80:
print(“很好”)
elif score >= 60:
print(“及格”)
elif score >= 30:
print(不及格):
else:
print(“很差”)
博客列表 >三.python判断语句
score = 90
if score >= 80:
print(“很好”)
elif score >= 60:
print(“及格”)
elif score >= 30:
print(不及格):
else:
print(“很差”)