infilename = input('입력 파일 이름: ') outfilename = input('출력 파일 이름: ') infile = open(infilename, 'r',encoding = 'UTF8') outfile = open(outfilename, 'w') s = infile.read() outfile.write(s) infile.close() outfile.close() infile = open(infilename, 'r',encoding = 'UTF8') outfile = open(outfilename, 'w') ▶ 복사하고 싶은 파일은 읽기 용도 'r' 모드로 열고 출력 파일은 쓰기 위해 'w' 모드로 열어줌 ★ encoding = 'UTF8'을 붙이지 않으면 cp949 코덱으로 인코딩 된..