order
__len__
Enter search terms or a module, class or function name.
Return the number of nodes in the graph.
nnodes : int
The number of nodes in the graph.
See also
order, __len__
Examples
>>> G = nx.Graph() # or DiGraph, MultiGraph, MultiDiGraph, etc >>> G.add_path([0,1,2]) >>> len(G) 3