/ Published in: Python
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
import codecs fp = codecs.open('E:\\demo.txt', 'w', 'utf_8') fp.write('cioè') fp.close()