블로그 이미지
이비그치면

태그목록

최근에 올라온 글

최근에 달린 댓글

최근에 받은 트랙백

글 보관함

calendar

1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30

'{} {}'.format('one', 'two')  --> 'one two'

'{first} {last}'.format(first='아', last='무개')  --> '아 무개'

'{last} {first}'.format(first='아', last='무개')  --> '무개 아'