# 조건문
score = 85
if score >= 90:
print('A학점')
else : # 90 미만
if score >= 80 :
print('B학점')
else : # 80 미만
if score >= 70 :
print('C학점')
else : # 70 미만
if score >= 60 :
print('D학점')
else : # 60 미만
print('F학점')
# if elif
if score >= 90 :
print("A학점")
elif score >= 80 :
print("B학점")
elif score >= 70 :
print("C학점")
elif score >= 60 :
print("D학점")
else :
print("F학점")
# 문제
# 화면에서 점수를 입력받아서 학점 출력하기
score = int(input("학점을 입력하세요"))
if score >= 90 :
grade = "A학점"
elif score >= 80 :
grade = "B학점"
elif score >= 70 :
grade = "C학점"
elif score >= 60 :
grade = "D학점"
else :
grade = "F학점"
if (score >= 60) :
pf = "PASS"
else :
pf = "FAIL"
print(score,pf)
'Python' 카테고리의 다른 글
Python - 문자열 함수 (0) | 2021.06.10 |
---|---|
Python - 반복문 문제 (삼각형, 홀수합, 화씨변환, 윤년, 동전 변환, 가로 구구단) (0) | 2021.06.10 |
Python - 반복문 for , while (0) | 2021.06.09 |
Python - 변수와 진수 (0) | 2021.06.09 |
Python - 기본 (0) | 2021.06.08 |