본문 바로가기
파이썬

파이썬 Syntax error on print with Python 3

by º기록 2020. 9. 23.
반응형

Python 3에서 문자열을 인쇄 할 때 구문 오류가 발생하는 이유는 무엇입니까?

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

 

해결 방법

 


print("Hello World")

 

참조 페이지 https://stackoverflow.com/questions/826948

 

 

반응형

댓글