networkx.Graph.add_star
networkx.Graph.add_cycle
Add a path.
nlist : list
A list of nodes. A path will be constructed from the nodes (in order) and added to the graph.
data : list or iterable, optional
Data to add to the edges in the path. The length should be one less than len(nlist).
Examples
>>> G=nx.Graph() >>> G.add_path([0,1,2,3]) >>> G.add_path([10,11,12],data=['a','b'])