我正在努力解决如何从一个函数传递参数,以便我可以在另一个函数中填充一个列表 - 我的代码是:
infinity = 1000000
invalid_node = -1
startNode = 0
#Values to assign to each node
class Node:
distFromSource = infinity
previous = invalid_node
visited = False
#read in all network nodes
def network():
f = open ('network.txt', 'r')
theNetwork = [[int(node) for node in line.split(',')] for line in f.readlines()]
print theNetwork
return theNetwork
#for each node assign default values
def populateNodeTable():
nodeTable = []
index = 0
f = open('network.txt', 'r')
for line in f:
node = map(int, line.split(','))
nodeTable.append(Node())
print "The previous node is " ,nodeTable[index].previous
print "The distance from source is " ,nodeTable[index].distFromSource
index +=1
nodeTable[startNode].distFromSource = 0
return nodeTable
#find the nearest neighbour to a particular node
def nearestNeighbour(currentNode, theNetwork):
nearestNeighbour = []
nodeIndex = 0
for node in nodeTable:
if node != 0 and currentNode.visited == false:
nearestNeighbour.append(nodeIndex)
nodeIndex +=1
return nearestNeighbour
currentNode = startNode
if __name__ == "__main__":
nodeTable = populateNodeTable()
theNetwork = network()
nearestNeighbour(currentNode, theNetwork)
所以,我试图用最接近其他节点的节点列表填充我的nearestNeighbour 函数中的nearestNeighbour 列表。现在,所有其他函数都正常工作,所有参数传递都正常工作。但是,我的nearestNeighbour 函数会抛出此错误消息:
如果 node != 0 和 theNetwork[currentNode].visited == false: AttributeError: 'list' object has no attribute 'visited'
(为布局道歉,还没有完全理解代码引号的使用)