CntOutDegNodes (SWIG) ''''''''''''''''''''' .. function:: CntOutDegNodes(Graph, NodeOutDeg) :noindex: Returns the number of nodes in *Graph* with out-degree *NodeOutDeg*. Parameters: - *Graph*: graph (input) A Snap.py graph or a network. - *NodeOutDeg*: int (input) The out-degree of the nodes to be counted. Return value: - int The number of nodes in *Graph* with out-degree *NodeOutDeg*. The following example shows how to get the number of nodes with out-degrees 10, 20 and 5 in :class:`TNGraph`, :class:`TUNGraph`, and :class:`TNEANet`:: import snap Graph = snap.GenRndGnm(snap.PNGraph, 100, 1000) Count = snap.CntOutDegNodes(Graph, 10) print("Directed Graph: Count of nodes with out-degree 10 is %d" % Count) UGraph = snap.GenRndGnm(snap.PUNGraph, 100, 1000) Count = snap.CntOutDegNodes(UGraph, 20) print("Undirected Graph: Count of nodes with out-degree 20 is %d" % Count) Network = snap.GenRndGnm(snap.PNEANet, 100, 1000) Count = snap.CntOutDegNodes(Network, 5) print("Network Graph: Count of nodes with out-degree 5 is %d" % Count)