NetworkX

Previous topic

networkx.DiGraph.add_star

Next topic

networkx.DiGraph.add_cycle

networkx.DiGraph.add_path

DiGraph.add_path(nlist, **attr)

Add a path.

Parameters:

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)