3.4.4.5. networkx.MultiGraph.number_of_nodes

MultiGraph.number_of_nodes()

Return the number of nodes in the graph.

Returns:

nnodes : int

The number of nodes in the graph.

See also

order, __len__

Examples

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