Closed laroque closed 12 years ago
The python 2 keyword `print' was removed in python 3. The latter has only the print() function with the following relationship:
print -> print()
The later should be used exclusively in order to maintain python 3 compatibility of the code.
Hey Micah, I've actually fixed this in my last push to develop. You were assigned just to ensure that you see this and keep it in mind for the future.
The python 2 keyword `print' was removed in python 3. The latter has only the print() function with the following relationship:
print -> print()
The later should be used exclusively in order to maintain python 3 compatibility of the code.