I am a new learner to the Python language. When I want to print, I use the syntax:
print "hello world"
But when I use this syntax, it shows an error like missing parenthesis in calling print. I don't know why it is happening, because I know there is no need of using parentheses in Python to print a string like
print ("hello world")
What wrong have I done?
This is the error I get:
SyntaxError: Missing parentheses in call to 'print'