코딩일지/python 백준 알고리즘

python 백준 알고리즘 9498번: 시험 성적

야언 2022. 9. 4. 17:40

두 수 비교하기 문제와 같이 삼항연산자를 이용하는 쉬운 문제.

 

내 제출

score = int(input())

if score >= 90 :
    print('A')
elif score >= 80 :
    print('B')
elif score >= 70 :
    print('C')
elif score >= 60 :
    print('D')
else:
    print('F')