networkx.MultiDiGraph.nodes_iter
networkx.MultiDiGraph.edges
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]