Python 3.6.0 syntax error “Missing parentheses in call to ‘print’ [duplicate]

This is very basic problem but because you seem completely new to everything…

The print “statement” in Python 3.x is a function that uses parenthesis so:

print "Hello world"  # python 2.x

Is now

print("Hello world")   # python 3.x

Leave a Comment

error code: 523