NetworkX

Previous topic

selfloop_edges

Next topic

copy

number_of_selfloops

Graph.number_of_selfloops()

Return the number of selfloop edges.

A selfloop edge has the same node at both ends.

Returns :

nloops : int

The number of selfloops.

Examples

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