changed python2 print statements to python3 in 07_dijkstras_algorithm (#82)

* Resolve Issue #40: Changed more examples to use python3 syntax

* corrected selection sort python

* 07 dijkstras changed python2 print statement
This commit is contained in:
Ramit Mittal
2018-08-24 23:50:10 +05:30
committed by Aditya Bhargava
parent 57dd4e1756
commit 2ab2e9c181

View File

@@ -61,6 +61,6 @@ while node is not None:
# Find the next node to process, and loop.
node = find_lowest_cost_node(costs)
print "Cost from the start to each node:"
print costs
print("Cost from the start to each node:")
print(costs)