在Jupyter Notebook的Matplotlib中,如果要显示波斯/阿拉伯字母且避免断开,可以按照以下步骤进行设置:
import matplotlib.pyplot as plt
from bidi import algorithm as bidialg
import arabic_reshaper
text = "波斯/阿拉伯字母"
reshaped_text = arabic_reshaper.reshape(text)
bidi_text = bidialg.get_display(reshaped_text)
fig, ax = plt.subplots()
ax.text(0.5, 0.5, bidi_text, fontsize=12, ha='center')
plt.show()
这样设置后,在Jupyter Notebook的Matplotlib中就能正确显示波斯/阿拉伯字母,避免断开。
以上是对问题的回答,下面是与云计算相关的一些名词词汇的介绍:
领取专属 10元无门槛券
手把手带您无忧上云