조건문과 반복문조건문 (if, else, elif)주어진 조건이 True 일 때 코드 블록을 실행하는 데 사용됨x = 10if x == 10: print("x는 10입니다.")else: print("10이 아닙니다.")print("")score = 93str = "등급 : "if score >= 95: print(str, "A+")elif score >= 90: print(str, "A")elif score >= 85: print(str, "B+")elif score >= 80: print(str, "B")elif score >= 75: print(str, "C+")elif score >= 70: print(str, "C")else: print(str, "..