Table of Contents
Graph()
DiGraph()
MultiGraph()
MultiDiGraph()
Auto-generated API
Graph.
number_of_nodes
Return the number of nodes in the graph.
nnodes : int
The number of nodes in the graph.
See also
order, __len__
order
__len__
Examples
>>> G = nx.path_graph(3) # or DiGraph, MultiGraph, MultiDiGraph, etc >>> len(G) 3