본문 바로가기

Python/Python 어렵게 배우기

Python 어렵게 배우기 - Exercise 9: Printing, Printing, Printing

원문 : http://learnpythonthehardway.org/book/ex9.html


또 프린트... (ex9.py)

# Here's some new strange stuff, remember type it exactly.

days = "Mon Tue Wed Thu Fri Sat Sun"
months = "Jan\nFeb\nMar\nApr\nMay\nJun\nJul\nAug"

print "Here are the days: ", days
print "Here are the months: ", months

print """
There's something going on here.
With the three double-quotes.
We'll be able to type as much as we like.
Even 4 lines if we want, or 5, or 6.
"""


결과




알 수 있는 내용...

1. 이스케이프 시퀀스(escape sequence"\n" 같은 표현)가 표현된다.

2. String이 여러 줄 일 경우 """ 이나 ''' 으로 묶어서 사용 할 수 있다.





반응형