Return an iterator for (node, degree).
The node degree is the number of edges adjacent to that node.
Parameters: | nbunch : list, iterable
weighted : False|True
|
---|
Examples
>>> G=nx.path_graph(4)
>>> list(G.degree_iter(0)) # node 0 with degree 1
[(0, 1)]
>>> list(G.degree_iter([0,1]))
[(0, 1), (1, 2)]