[string 포맷팅]
python 의 문자열 포맷팅은 두가지 방법을 사용한다.
- .format()
- %
두가지 방법중 어떤 방법을 사용해도 상관없다.
% 를 이용하는 것이 권장되고 있는 것 같다.
<소스코드>
#!/usr/bin/python
# format 이용
# format 에 리스트와 dict 를 이용한 방법
# % 와 dict 를 이용한 방법
# % 와 튜플을 이용한 방법 |
<참고>
http://www.diveintopython.net/native_data_types/formatting_strings.html
https://infohost.nmt.edu/tcc/help/pubs/python/web/new-str-format.htmlhttp://stackoverflow.com/questions/5082452/python-string-formatting-vs-format
https://docs.python.org/2/library/stdtypes.html#str.format
반응형
'python' 카테고리의 다른 글
[python] subprocess 모듈을 이용한 명령어 실행 (1) | 2015.06.11 |
---|---|
파이썬의 중요 특징(클로저함수, 장식자, 생성기, 코루틴) (0) | 2015.02.09 |
[python][xlswriter] xlsxwriter 의 메모리 점유해제를 위한 constant_memory 모드 설정 (0) | 2015.02.04 |
[파이선2] 파이선2의 한글 인코딩 비교하기 (2) | 2015.01.12 |
Python 에 한글 입력하기 (0) | 2015.01.09 |