'{} {}'.format('one', 'two') --> 'one two'
'{first} {last}'.format(first='아', last='무개') --> '아 무개'
'{last} {first}'.format(first='아', last='무개') --> '무개 아'
'컴퓨터 > Python(파이선, 파이썬)' 카테고리의 다른 글
div tag 내부 모든 span tag의 text 처리 (0) | 2020.08.25 |
---|---|
문자열 전,후 값 변경된 위치 알아내기 (0) | 2020.04.03 |
숫자 천단위 컴마로 구분하기(Commify numbers) (0) | 2013.07.12 |
참 간결하고 편리한 파이썬과 정규식(Python & Regular Expression) (0) | 2013.06.21 |
정규식 디버거(Regular Expression/Regex Debugger) Kodos (0) | 2010.08.02 |