Hello,
I am stuck on how I have pass function arguments to the main method of my program. Here is my code:
network = []
def populateArray():
file = open('C:\\My Documents\\route.txt', 'r')
for line in file:
network.append(line)
print "Network = "
print network
def main():
if __name__ == "__main__":
main()
I am not sure how I link the two functions together