networkx.MultiDiGraph.nbunch_iter
networkx.MultiDiGraph.__contains__
Return True if graph has node n.
Notes
It is more readable and simpler to use >>> 0 in G True
Examples
>>> G=nx.path_graph(4) >>> print G.has_node(0) True