1 python_score = 80 2 c_score = 70 3 if python_score >= 60 or c_score >= 60: 4 print("通过") 5 else: 6 print("失败")
判断分数
原文:https://www.cnblogs.com/old-horse/p/12825793.html