考虑以下代码,我想绘制一些unicode字符串,但它失败了。
import matplotlib.pyplot as plt
import matplotlib.font_manager as fm
prop = fm.FontProperties(fname='ttf/adorsholipi_20-07-2007.ttf')
plt.title(u'ফিগার প্লট',fontproperties=prop)
plt.text(0.2, 0.8, u'সে স্কুলে যায়', fontproperties=prop)
plt.show()