标签: python-3.x networkx
我正在使用
degrees = [val for (node, val) in a.degree()]
我知道
[2, 2, 2, 2, 2, 2, 2, 2]
应为: [2,2,2,0,2,2,2,2,2]
基本上第4个节点的度数为0,而函数只是错过了它?如何获取打印第4个节点的度数?