nodes_iter
edges
Enter search terms or a module, class or function name.
Iterate over the nodes. Use the expression ‘for n in G’.
niter : iterator
An iterator over all nodes in the graph.
Examples
>>> G = nx.Graph() # or DiGraph, MultiGraph, MultiDiGraph, etc >>> G.add_path([0,1,2,3])