Return the degree of a node or nodes.
The node degree is the number of edges adjacent to that node.
Parameters : | nbunch : iterable container, optional (default=all nodes)
weight : string or None, optional (default=None)
|
---|---|
Returns : | nd : dictionary, or number
|
Examples
>>> G = nx.Graph() # or DiGraph, MultiGraph, MultiDiGraph, etc
>>> G.add_path([0,1,2,3])
>>> G.degree(0)
1
>>> G.degree([0,1])
{0: 1, 1: 2}
>>> list(G.degree([0,1]).values())
[1, 2]