DiGraph.order#

DiGraph.order()#

返回图中的节点数量。

Returns:
nnodesint

图中的节点数量。

See also

number_of_nodes

相同的方法

__len__

相同的方法

Examples

>>> G = nx.path_graph(3)  # 或 DiGraph, MultiGraph, MultiDiGraph 等
>>> G.order()
3