Mô-đun io hiện được khuyến nghị và tương thích với cú pháp mở của Python 3:Mã sau được sử dụng để đọc và ghi vào các tệp unicode (UTF-8) bằng Python
Ví dụ
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)