DiGraph.remove_node# DiGraph.remove_node(n)[source]# 移除节点 n。 移除节点 n 及其所有相邻边。 尝试移除不存在的节点将引发异常。 Parameters: n节点图中的一个节点 Raises: NetworkXError如果 n 不在图中。 See also remove_nodes_from Examples >>> G = nx.path_graph(3) # 或 DiGraph, MultiGraph, MultiDiGraph 等 >>> list(G.edges) [(0, 1), (1, 2)] >>> G.remove_node(1) >>> list(G.edges) []