원문 : 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이 여러 줄 일 경우 """ 이나 ''' 으로 묶어서 사용 할 수 있다.
반응형
'Python > Python 어렵게 배우기' 카테고리의 다른 글
Python 어렵게 배우기 - Exercise 11: Asking Questions (0) | 2013.11.28 |
---|---|
Python 어렵게 배우기 - Exercise 10: What Was That? (0) | 2013.11.28 |
Python 어렵게 배우기 - Exercise 8: Printing, Printing (0) | 2013.11.21 |
Python 어렵게 배우기 - Exercise 7: More Printing (0) | 2013.11.21 |
Python 어렵게 배우기 - Exercise 6: Strings and Text (0) | 2013.11.20 |