Syntax error on print with Python 3 [duplicate]

In Python 3, print became a function. This means that you need to include parenthesis now like mentioned below:

print("Hello World")

Leave a Comment