Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python에서 유니코드(UTF-8) 파일을 읽고 쓰는 방법은 무엇입니까?


이제 io 모듈이 권장되며 Python 3의 개방형 구문과 호환됩니다. 다음 코드는 Python에서 유니코드(UTF-8) 파일을 읽고 쓰는 데 사용됩니다.

예시

import io
with io.open(filename,'r',encoding='utf8') as f:
    text = f.read()
# process Unicode text
with io.open(filename,'w',encoding='utf8') as f:
    f.write(text)