파이썬2 [Error, Python] SyntaxError: Missing parentheses in call to 'print' 파이썬3에서 파일을 실행하면 발생하는 오류 중 하나인 SyntaxError: Missing parentheses in call to 'print' 에 대해 알아보자. 알아보니 12345678 try: import roslib; roslib.load_manifest("bag2video") from cv_bridge import CvBridge except: print "Could not find ROS package: cv_bridge" print "If ROS version is pre-Groovy, try putting this package in ROS_PACKAGE_PATH" sys.exit(1) Colored by Color Scriptercs print "Could not find ROS pac.. 2018. 7. 13. [Python] Annotation , 파이썬 주석처리하기 파이썬 주석처리하기 1. # 맨앞에 # 을 붙인다. c++의 //과 같다. ex> 1 2 3 4 print("이부분은 주석처리가 되지 않습니다.") #print("이부분은 주석처리가 됩니다.") cs Result 이부분은 주석처리가 되지 않습니다. 2. """ 큰따옴표를 3개 연속으로 사용하여 여러줄을 주석으로 만든다. C++의 /**/과 같다. ex> 1 2 3 4 5 6 print("이부분은 주석처리가 되지 않습니다.") """ print("이부분은 ") print("주석처리가 됩니다.") """ print("이부분은 주석처리가 되지 않습니다.") cs Result 이부분은 주석처리가 되지 않습니다. 이부분은 주석처리가 되지 않습니다. 2018. 7. 4. 이전 1 다음