Warning

This documents an unmaintained version of NetworkX. Please upgrade to a maintained version and see the current NetworkX documentation.

add_star

DiGraph.add_star(nodes, **attr)

Add a star.

The first node in nodes is the middle of the star. It is connected to all other nodes.

Parameters:
  • nodes (iterable container) – A container of nodes.
  • attr (keyword arguments, optional (default= no attributes)) – Attributes to add to every edge in star.

Examples

>>> G = nx.Graph()   # or DiGraph, MultiGraph, MultiDiGraph, etc
>>> G.add_star([0,1,2,3])
>>> G.add_star([10,11,12],weight=2)