Why do I receive a syntax error when printing a string in Python 3?

>>> print "hello World"
  File "<stdin>", line 1
    print "hello World"
                      ^
SyntaxError: invalid syntax

3 Answers
3

Leave a Reply

Your email address will not be published. Required fields are marked *