def setup():
score=65.8
show_score(score)
calculate_grade(score)
def show_score(score):
print("YOUR SCORE : ",score)
def calculate_grade(score):
if (score >= 80 and score <= 100):
print("YOU GET A")
elif (score >= 70 and score <= 79):
print("YOU GET B")
elif (score >= 60 and score <= 69):
print("YOU GET C")
elif (score >= 50 and score <= 69):
print("YOU GET D")
elif (score >= 0 and score <= 49):
print("YOU GET F")
else:
print("NOT WORKING...")
setup()
ไม่มีความคิดเห็น:
แสดงความคิดเห็น