当我尝试绘制时为什么unicode字符串失败?

时间:2017-03-17 06:29:20

标签: python-3.x matplotlib unicode python-unicode unicode-string

考虑以下代码,我想绘制一些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()

matplotlib plot

0 个答案:

没有答案