NetworkX

Previous topic

networkx.DiGraph.nodes_iter

Next topic

networkx.DiGraph.edges

Quick search

networkx.DiGraph.__iter__

DiGraph.__iter__()

Iterate over the nodes. Use “for n in G”.

Examples

>>> G=nx.path_graph(4)
>>> print [n for n in G]
[0, 1, 2, 3]