当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python NetworkX nodes_with_selfloops用法及代码示例


本文简要介绍 networkx.classes.function.nodes_with_selfloops 的用法。

用法:

nodes_with_selfloops(G)

返回具有自循环的节点上的迭代器。

具有自环的节点具有两端与该节点相邻的边。

返回

nodelist迭代器

具有自循环的节点上的迭代器。

例子

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

相关用法


注:本文由纯净天空筛选整理自networkx.org大神的英文原创作品 networkx.classes.function.nodes_with_selfloops。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。