NetworkX

Previous topic

networkx.MultiGraph.nodes_iter

Next topic

networkx.MultiGraph.edges

Quick search

networkx.MultiGraph.__iter__

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