#

Note

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

#

networkx.MultiGraph.__len__

MultiGraph.__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