Returns True if graph G is bipartite, False if not.
See also
color
is_bipartite_node_set
Examples
>>> from networkx.algorithms import bipartite >>> G = nx.path_graph(4) >>> print(bipartite.is_bipartite(G)) True