Python 튜토리얼

기초

  • moneyIcon Prize : 교육
  • 31명 D-100486

 

[Answer] Q. 5/26 파이썬 조건문 - 3 (중첩 조건문)

2021.05.26 09:29 3,284 Views

정답

score = int(input('점수를 입력하세요 : '))


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


해설

상위 if 문이 해당 될 때, 그 안에서 if 문을 사용하려면, 들여쓰기 4칸을 해주면 됩니다.