networkx.MultiDiGraph.__len__¶
- MultiDiGraph.__len__()¶
Returns the number of nodes in the graph. Use: ‘len(G)’.
- Returns
nnodes – The number of nodes in the graph.
- Return type
See also
Examples
>>> G = nx.path_graph(4) # or DiGraph, MultiGraph, MultiDiGraph, etc >>> len(G) 4