networkx.is_connected¶
-
networkx.is_connected(G)[source]¶ Return True if the graph is connected, false otherwise.
Parameters: G : NetworkX Graph
An undirected graph.
Returns: connected : bool
True if the graph is connected, false otherwise.
Raises: NetworkXNotImplemented:
If G is undirected.
See also
is_strongly_connected,is_weakly_connected,is_semiconnected,is_biconnected,connected_componentsNotes
For undirected graphs only.
Examples
>>> G = nx.path_graph(4) >>> print(nx.is_connected(G)) True