#

Note

This documents the development version of NetworkX. Documentation for the current release can be found here.

#

networkx.Graph.__len__

Graph.__len__()[source]

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