nodes_with_selfloops#

nodes_with_selfloops(G)[source]#

返回一个包含自环节点的迭代器。

具有自环的节点在其边上两个端点都与该节点相邻。

Returns:
nodelistiterator

一个包含具有自环节点的迭代器。

Examples

>>> G = nx.Graph()  # 或 DiGraph, MultiGraph, MultiDiGraph, 等
>>> G.add_edge(1, 1)
>>> G.add_edge(1, 2)
>>> list(nx.nodes_with_selfloops(G))
[1]