我试图在不使用 get_edge_attributes() 函数的情况下从图中获取具有特定属性的边。我需要一种更灵活的方式来做到这一点。我可以获取节点属性,但由于我是 python 边缘的新手,似乎很难
G = nx.read_graphml("test.graphml")
for n in G:
print "%s\t%s" %(n, G.node[n].get(attr))
for (s,d) in G: # and here is my problem
print "%s->%s\t%s" %(s, d, G.edge[s][d].get(attr))