求助,我这个为什么提示'str'objecthasnoattribute'
发布网友
发布时间:2022-06-28 12:45
我来回答
共1个回答
热心网友
时间:2023-10-09 14:10
这个为什么提示'str'objecthasnoattribute'
nb=[]
for i in G.nodes():
a.append(G.degree(i))
total=0
#for nb in G.neighbors(i): # 这里的nb和全局变量 nb = [] 同名了吧,改一下呢
for j in G.neighbors(i):
#total=total+G.degree(nb) #这里应该变成j吧
total += G.degree(j)
nb.append(total)