要使轴标签以等宽字体显示,可以使用等宽字体系列。
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
font = FontProperties()
font.set_family("monospace")
plt.plot([2,1,3])
plt.xlabel("That is verbatim", fontproperties=font)
plt.ylabel("That is normal")
plt.show()