Python에서 한글 파일 읽기 오류 해결
#-*- coding: utf-8 -*-
# mail address 자르기
#--------------------------------------------
# 1. 파일 열기 (두번)
# 2. 파일 읽기
# 3. 텍스트 변경(; --> ;\n)
# 4. 파일 쓰기
# 5. 파일 종료
#--------------------------------------------
# 한글 읽기 파일 오류 해결 방법
# ==> input_fp= open(input_path,"rt", encoding="UTF8")
#--------------------------------------------
import os
#현재 script가 있는 파일 디렉토리 경로 찾기 currentPath = os.path.dirname(os.path.abspath(__file__))
print(currentPath)
input_file='/test_org.txt'
output_file='/mail_list.txt'
input_path = currentPath+input_file
output_path = currentPath+output_file
input_fp= open(input_path,"rt", encoding="UTF8")
output_fp= open(output_path,"w")
lines = input_fp.readlines()
print(lines)
for line in lines:
print(line)
temp=line
edited_temp = line.replace(";", ";\n")
output_fp.writelines(edited_temp)
input_fp.close()
output_fp.close()
'아는 것이 힘 > IT세상' 카테고리의 다른 글
[IP] Subnet = Netmask (0) | 2020.08.28 |
---|---|
[윈도우 명령어] 텍스트 변환 (0) | 2020.07.29 |
[워드] 줄 간격, 장평 조절 (0) | 2020.02.24 |
[python] 웹브라우저 자동 제어 (0) | 2020.01.09 |
[라즈베리파이] 모바일 핫스팟 연결 (0) | 2020.01.08 |