정올문제링크 문제집 - JUNGOLimage 사진 변경jungol.co.kr 연습문제 1 #9550for n in range(10, 21): print(n, end=" ") 자가진단 1 #821for i in range(1, 16): print(i, end=' ') 연습문제 2 #9551num = 1sum = 0while num 자가진단 2 #822num = int(input())res = 0i = 1while i 연습문제 3 #9552while True: score = int(input("점수를 입력하세요. ")) if score 100: break if score >= 80: print("축하합니다. 합격입니다.") else: ..