1 python_score = 80 2 c_score = 70 3 if python_score >= 60 or c_score >= 60: 4 print("通过") 5 else: 6 print("失败")