當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python NetworkX DiGraph.get_edge_data用法及代碼示例


本文簡要介紹 networkx.DiGraph.get_edge_data 的用法。

用法:

DiGraph.get_edge_data(u, v, default=None)

返回與邊 (u, v) 關聯的屬性字典。

這與 G[u][v] 相同,但如果邊不存在則返回默認值而不是異常。

參數

u, v節點
default: any Python object (default=None)

如果未找到邊 (u, v) 則返回的值。

返回

edge_dict字典

邊屬性字典。

例子

>>> G = nx.path_graph(4)  # or DiGraph, MultiGraph, MultiDiGraph, etc
>>> G[0][1]
{}

警告:不允許分配給G[u][v]。但是分配屬性 G[u][v]['foo'] 是安全的

>>> G[0][1]["weight"] = 7
>>> G[0][1]["weight"]
7
>>> G[1][0]["weight"]
7
>>> G = nx.path_graph(4)  # or DiGraph, MultiGraph, MultiDiGraph, etc
>>> G.get_edge_data(0, 1)  # default edge data is {}
{}
>>> e = (0, 1)
>>> G.get_edge_data(*e)  # tuple form
{}
>>> G.get_edge_data("a", "b", default=0)  # edge not in graph, return 0
0

相關用法


注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.DiGraph.get_edge_data。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。