แนะนำโมดูล io และเข้ากันได้กับไวยากรณ์เปิดของ Python 3:โค้ดต่อไปนี้ใช้เพื่ออ่านและเขียนไฟล์ unicode (UTF-8) ใน Python
ตัวอย่าง
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)