(Python)성적관리 프로그램
import pickle while True: chk = int(input('1.추가 2.검색 3.삭제 4.수정 5.출력 : ')) # 추가 if chk == 1: table = dict() try: with open('table.p', 'rb') as file: table = pickle.load(file) print('파일 불러오기 성공') except FileNotFoundError as e: print('파일이 없습니다.') name = input('학생이름 : ') data = {a:b for a, b in table.items() if a==name} if data == {}: score = dict(zip(['국어', '영어', '수학', '과학'], list(map(int, input('점..