1. open(), read(), write(), close()를 이용해 파일의 내용을 열고, 읽고, 쓰고, 닫을 수 있다. import time lt = time.localtime() dateStr = f'[{lt.tm_year}년 {lt.tm_mon}월 {lt.tm_mday}일]' todaySchedule = input('오늘 일정: ') file = open('C:/Users/Python/pycharm/pythonProject/005/test2.txt','w', encoding='UTF-8') # encoding = 'UTF-8'옵션을 추가해주지 않으면 깨져서 입력된다 # 'w'는 쓰기 모드 # 'r'는 읽기 모드, 파일이 없으면 에러가 난다 file.write(dateStr + todaySched..