NetworkX

Previous topic

networkx.MultiDiGraph.nodes_iter

Next topic

networkx.MultiDiGraph.edges

Quick search

networkx.MultiDiGraph.__iter__

MultiDiGraph.__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]