python2.7에서 공부했던 것들을 복습하기 위해 print로 이것 저것 시험해보던 중에 다음과 같은 Syntax Error가 발생했다. vi hi.py # coding: utf-8 print("hello, world") print("hello, ", end="") print("world") [root@localhost ~]# python hi.py File "hi.py", line 4 print("hello, ", end="") ^ SyntaxError: invalid syntax 우리의 구글님에게 물어보니, 친절하게도 다음과 같은 구문을 추가하면 해결 가능하다는 것! from __future__ import print_function 이 future모듈을 사용하는 것으로 python3의 기능처럼 코..