Python 어렵게 배우기 - Exercise 8: Printing, Printing
원문 : http://learnpythonthehardway.org/book/ex8.html 또 프린트...(ex8.py) formatter = "%r %r %r %r" print formatter % (1, 2, 3, 4) print formatter % ("one", "two", "three", "four") print formatter % (True, False, False, True) print formatter % (formatter, formatter, formatter, formatter) print formatter % ( "I had this thing.", "That you could type up right.", "But it didn't sing.", "So I said goodni..
더보기