Graph.
__len__
Returns the number of nodes in the graph. Use: ‘len(G)’.
nnodes – The number of nodes in the graph.
int
See also
number_of_nodes(), order()
number_of_nodes()
order()
Examples
>>> G = nx.path_graph(4) # or DiGraph, MultiGraph, MultiDiGraph, etc >>> len(G) 4