2014-06-17 4 views

답변

1

Python 3.x에서 Python 2.x 구문을 사용하려고합니다.

파이썬 3.x에서 print은 더 이상 진술이 아닙니다. 대신 converted into function 이었으므로 다음과 같이 호출해야합니다.

>>> print("hi") # Note the parenthesis 
hi 
>>>