📜  networkx 删除边缘 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:07.633000             🧑  作者: Mango

代码示例1
>>> G = nx.path_graph(4)  # or DiGraph, etc
>>> G.remove_edge(0, 1)
>>> e = (1, 2)
>>> G.remove_edge(*e)  # unpacks e from an edge tuple
>>> e = (2, 3, {"weight": 7})  # an edge with attribute data
>>> G.remove_edge(*e[:2])  # select first part of edge tuple