Printing Strings


LESSON

문자열 출력 방법을 연습한다.



codecademy

STRING & CONSOLE OUTPUT

10. Printing Strings


여러분이 코드를 작성하는 공간을 에디터라고 부릅니다.
오른쪽의 바깥쪽 창에는 여러분이 작성한 코드의 결과값을 보여주는데, 이곳을 콘솔 이라고 합니다.
print 는 여러분의 코드를 콘솔창에 보여줍니다.

설명:
•Ch10. Printing Strings 에서는 문자열 출력방법을 학습한다.
• print 는 에디터 화면에서 작성한 프로그래밍의 결과 값을 콘솔창에 보여준다.



codecademy

  • 문자열 “Monty Python”을 콘솔창에 출력하라.



codecademy

  • 아래와 같이 print문을 사용하여 작성하라.
print "Your string goes here"



codecademy

"""Tell Python to print "Monty Python"
to the console on line 4!"""

print "Monty Python"

설명:
• print 문을 사용하여 문자열 “Monty Python” 을 출력한다.

결과

Monty Python