networkx.Graph.add_star
networkx.Graph.add_cycle
Enter search terms or a module, class or function name.
Add a path.
nlist : list
A list of nodes. A path will be constructed from the nodes (in order) and added to the graph.
attr : keyword arguments, optional (default= no attributes)
Attributes to add to every edge in path.
See also
add_star, add_cycle
Examples
>>> G=nx.Graph() # or DiGraph, MultiGraph, MultiDiGraph, etc >>> G.add_path([0,1,2,3]) >>> G.add_path([10,11,12],weight=7)