字母 ñ 在 python 中使用 matplotlib 和 networkx 时出错

letter ñ error when using matplotlib and networkx in python

我有一个问题,在我的例子中,我从数据库中获取名字,当名字中包含字母 Ñ 例如姓氏 BOLAÑOS 时,会发生错误,我使用了 # -- 编码: utf8——但这还不够。我读到 matplotlib 需要一个包含特殊字符的文件。提前致谢

这是代码:

# -*- coding: utf8 -*-
import matplotlib.pyplot as plt
import networkx as nx
socialNetworl = nx.Graph()
socialNetworl.add_nodes_from([1,2,3,4,5,6])
socialNetworl.add_edges_from([(1,2),(1,3),(2,3),(2,5),(2,6)]) 
labels = {1:'King Bolaños', 2:'Lancelot', 3:'shopkeeper', 4:'dead parrot', 5:'Brian', 6:'Sir Robin'}
nx.draw(socialNetworl, node_size = 800, node_color="cyan", labels=labels, with_labels = True)
plt.show()

Matplotlib 需要 Python unicode(对于 Python2)。所以你可以使用

labels = {1:'King Bolaños'.decode('utf-8'), 2:'Lancelot', 3:'shopkeeper', 4:'dead parrot', 5:'Brian', 6:'Sir Robin'}