Return a copy of the graph.
Returns : | G : Graph
|
---|
See also
Notes
This makes a complete copy of the graph including all of the node or edge attributes.
Examples
>>> G = nx.Graph() # or DiGraph, MultiGraph, MultiDiGraph, etc
>>> G.add_path([0,1,2,3])
>>> H = G.copy()