number_of_selfloops#

number_of_selfloops(G)[source]#

返回自环边的数量。

自环边在两端具有相同的节点。

Returns:
nloopsint

自环边的数量。

Examples

>>> G = nx.Graph()  # 或 DiGraph, MultiGraph, MultiDiGraph 等
>>> G.add_edge(1, 1)
>>> G.add_edge(1, 2)
>>> nx.number_of_selfloops(G)
1