io मॉड्यूल अब अनुशंसित है और यह Python 3 के ओपन सिंटैक्स के साथ संगत है:पायथन में यूनिकोड (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)