Maison >développement back-end >Tutoriel Python >Comment configurer l'interface chinoise en python
Comment configurer l'interface chinoise en python : recherchez d'abord le dossier où se trouvent les polices chinoises Windows10 [C:/Windows/Fonts/] puis ajoutez le code correspondant devant le code [import matplotlib. pyplot comme plt.... 】.
Comment définir l'interface chinoise en Python :
Trouvez le dossier où se trouve le chinois de Windows 10 les polices se trouvent
C:/Windows/Fonts/
Ajouter devant le code :
import matplotlib.pyplot as plt plt.rcParams['font.sans-serif']=['simhei'] # 添加中文字体为黑体 plt.rcParams['axes.unicode_minus'] =False ... #ax[0, 0].set_ylabel(u"哈哈") # 注意前面加上'u'. #ax[2, 0].set_ylabel(u"嘿嘿") ... #或 import matplotlib.pyplot as plt from matplotlib import font_manager my_font = font_manager.FontProperties(fname="C:/Windows/Fonts/simsun.ttf") # 添加中文字体为黑体 ... ax[0, 0].set_ylabel(u"哈哈", fontproperties=my_font) ax[2, 0].set_ylabel(u"嘿嘿", fontproperties=my_font) ...
Recommandations d'apprentissage gratuites associées : Tutoriel vidéo Python
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!