Returns the number of nodes in the graph. Use: ‘len(G)’.
The number of nodes in the graph.
number_of_nodes: identical method order: identical method
>>> G = nx.path_graph(4) # or DiGraph, MultiGraph, MultiDiGraph, etc >>> len(G) 4