number_of_nodes

MultiDiGraph.number_of_nodes()

Return the number of nodes in the graph.

Returns:nnodes – The number of nodes in the graph.
Return type:int

See also

order(), __len__()

Examples

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