NetworkX

Previous topic

networkx.DiGraph.nbunch_iter

Next topic

networkx.DiGraph.__contains__

Quick search

networkx.DiGraph.has_node

DiGraph.has_node(n)

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