이제 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)