반응형
Python 3에서 문자열을 인쇄 할 때 구문 오류가 발생하는 이유는 무엇입니까?
>>> print "hello World"
File "<stdin>", line 1
print "hello World"
^
SyntaxError: invalid syntax
해결 방법
print("Hello World")
참조 페이지 https://stackoverflow.com/questions/826948
반응형
'파이썬' 카테고리의 다른 글
파이썬 SQLAlchemy, get object not bound to a Session (1) | 2020.09.23 |
---|---|
파이썬 Python argparse command line flags without arguments (0) | 2020.09.23 |
파이썬 문자열에서 모든 공백 제거 (0) | 2020.09.23 |
파이썬에서 사용 가능한 모든 드라이브 문자를 나열하는 방법이 있습니까? (0) | 2020.09.23 |
파이썬 Python 3에서 Python 2와 마찬가지로 __cmp__ 메서드를 사용할 수없는 이유는 무엇입니까? (0) | 2020.09.23 |
댓글