number_of_selfloops# number_of_selfloops(G)[source]# 返回自环边的数量。 自环边在两端具有相同的节点。 Returns: nloopsint自环边的数量。 See also nodes_with_selfloops, selfloop_edges Examples >>> G = nx.Graph() # 或 DiGraph, MultiGraph, MultiDiGraph 等 >>> G.add_edge(1, 1) >>> G.add_edge(1, 2) >>> nx.number_of_selfloops(G) 1