Print Statements


LESSON

이 장에서는 Python2 와 Python3 의 문법 차이를 설명한다.



codecademy

PYTHON SYNTAX

2. Print Statements

Python 에는 2 종류의 버젼이 있다.
Pyhton2, Python3 모두 광범위하게 사용되고 있다.
두 버젼의 가장 큰 차이점은 print 문을 작성하는 방법이다.
Python3 에는 print 문은 괄호가 사용 됩니다.

print "Hello World!"
print "Deep into distant woodlands winds a mazy way, reaching to overlapping spurs of mountains bathed in their hill-side blue."

이 과정에서는 Python2 를 사용할 것이다.
당신이 Python3 를 사용한다면, 두 버젼의 차이점을 관심있게 지켜보는것이 유용할 수 있다.

설명: [ Learn ]
• Ch2. Print Statements 에서는 python2 vs python3 의 차이를 학습한다.
• Python2 와 Python3는 문법이 조금 틀리다.
• Python2 는 () 사용하지 않는다.
• Python3 는 () 를 사용한다.
• Python2와 Python3는 Python을 배우는데, 크게 차이는 없다.
• 그리고 Python version 3.x 이상은 Python2 문법이 모두 통용이 된다.



codecademy

  • Python3 문법을 사용하여 무언가를 출력하여라.



codecademy

  • Python3 는 괄호를 사용하는것을 기억하라.
print ("Your message!")

설명: [ Hint ]
• Python3 는 print 문을 사용시 괄호() 가 필요하다.



codecademy

print ("Hello World!")

설명: [ Solution ]
• Python3 는 print 문을 사용시 괄호() 를 사용한다.

결과

Hello World!