320x100
korScore = int(input('국어 점수 입력: '))
engScore = int(input('영어 점수 입력: '))
matScore = int(input('수학 점수 입력: '))
sciScore = int(input('과학 점수 입력: '))
hisScore = int(input('국사 점수 입력: '))
# 튜플은 변경을 못하지만
# 튜플 안에 있는 딕셔너리는 변경이 가능하다.
scores = ({'kor':korScore},{'eng':engScore},{'mat':matScore},{'sci':sciScore},{'his':hisScore})
print(scores)
for item in scores:
for key in item.keys():
if item[key] >= 90:
item[key] = 'A'
elif item[key] >=80:
item[key] ='B'
elif item[key] >=70:
item[key] ='C'
elif item[key] >=60:
item[key] ='D'
else:
item[key] ='E'
print(scores)
300x250
'개발일지 > Python' 카테고리의 다른 글
[복기] 파이썬 빈 딕셔너리에 과목 및 점수 입력 (키값, 벨류값 추가) 반복문으로 (0) | 2022.05.12 |
---|---|
[복기] 파이썬 튜플로감싸진 딕셔너리 안의 숫자를 가져와서 활용하는 코드 (0) | 2022.05.12 |
파이썬 합집합, 교집합 코드 (중복제거) (0) | 2022.05.12 |
파이썬 남은 목표학점 구하기 및 튜플 조작 (0) | 2022.05.12 |
파이썬 리스트 값 교환 (0) | 2022.05.12 |