Warning

This documents an unmaintained version of NetworkX. Please upgrade to a maintained version and see the current NetworkX documentation.

networkx.DiGraph.__len__

DiGraph.__len__()

Returns the number of nodes in the graph. Use: ‘len(G)’.

Returns

nnodes – The number of nodes in the graph.

Return type

int

Examples

>>> G = nx.path_graph(4)  # or DiGraph, MultiGraph, MultiDiGraph, etc
>>> len(G)
4