欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python matplotlib画图不显示中文解决办法

程序员文章站 2022-03-20 13:29:32
...

 

解决办法

font = {
    'family':'SimHei',
    'weight':'bold',
    'size':'16'
}
matplotlib.rc("font",**font)



import random

from matplotlib import pyplot as plt
from sympy.physics.quantum.circuitplot import matplotlib

font = {
    'family':'SimHei',
    'weight':'bold',
    'size':'16'
}
matplotlib.rc("font",**font)



x = range(0,120)
y = [random.randint(20,35) for i in range(0,120)]

plt.figure(figsize=(20,10),dpi=80)
plt.plot(x,y)
# 调整X轴刻度
_x = list(x)
_xtick_labels = ["10点{}分".format(i) for i in range(60)]
_xtick_labels += ["11点{}分".format(i) for i in range(60)]

plt.xticks(_x[::3],_xtick_labels[::3],rotation=90)


plt.show()

 

相关标签: python matplotlib