원문 : http://learnpythonthehardway.org/book/ex7.html
좀더 다양하게 print 문을 사용해 보자 (ex7.py)
print "Mary had a little lamb." print "Its fleece was white as %s." % 'snow' print "And everywhere that Mary went." print "." * 10 # what'd that do? end1 = "C" end2 = "h" end3 = "e" end4 = "e" end5 = "s" end6 = "e" end7 = "B" end8 = "u" end9 = "r" end10 = "g" end11 = "e" end12 = "r" # watch that comma at the end. try removing it to see what happens print end1 + end2 + end3 + end4 + end5 + end6, print end7 + end8 + end9 + end10 + end11 + end12
결과
알 수 있는 내용...
1. string에 곱하기 "*" 가 먹힌다.
2. print 문 마지막에 콤마 ","를 사용 하면 다음 프린트 문 과 붙어서 인쇄된다.
반응형
'Python > Python 어렵게 배우기' 카테고리의 다른 글
Python 어렵게 배우기 - Exercise 9: Printing, Printing, Printing (0) | 2013.11.21 |
---|---|
Python 어렵게 배우기 - Exercise 8: Printing, Printing (0) | 2013.11.21 |
Python 어렵게 배우기 - Exercise 6: Strings and Text (0) | 2013.11.20 |
Python 어렵게 배우기 - Exercise 5: More Variables and Printing (0) | 2013.11.20 |
Python 어렵게 배우기 - Exercise 4: Variables And Names (0) | 2013.11.19 |