Maison > Questions et réponses > le corps du texte
# coding=utf-8 ##以utf-8编码储存中文字符
import os
import codecs
path = "d:/Python/c.txt"
try:
f=codecs.open(path,'w', 'UTF-8')
f.close()
except Exception as e:
print(e)
os.system('pause')
Python 3.6.1
Le code ci-dessus ne peut créer que des fichiers texte au format ANSI. Comment créer des fichiers UTF-8 ?
迷茫2017-06-14 10:55:28
En fait, le code du sujet peut créer des fichiers UTF-8, mais comme il n'y a aucun contenu écrit dans le fichier, le fichier txt vide n'a pas d'encodage. Écrivez quelques caractères UTF et réessayez et tout ira bien
. f=codecs.open(path,'w', 'UTF-8')
f.write("中文")
f.close()
Ouvrez à nouveau le fichier c.txt et ce sera UTF-8.
(Python3.4)
高洛峰2017-06-14 10:55:28
encoding='utf8'
>>> with open('utf8.txt','w', encoding='utf8') as w:
w.write('以utf-8编码储存中文字符')
14
>>> with open('utf8.txt','r', encoding='utf8') as r:
print(r.encoding)
print(r.read())
utf8
以utf-8编码储存中文字符
>>>