반응형
[Python] 다양한 문자 포멧팅 방법
[ 기준 : Python 2.7 ]
1.
var = '%(foo)s %(foo)s %(foo)s' % { 'foo': 'look_at_me_three_times' }
2.
var = '{0} {0} {0}'.format('look_at_meeee')
3.
var = '{foo} {foo} {foo}'.format(foo = 'python you so crazy')
반응형
'Python > Python' 카테고리의 다른 글
[Python] python2, python3 둘다 설치하는 방법 (windows) (0) | 2019.08.22 |
---|---|
[Python] 순열과 조합 (0) | 2019.08.08 |
[Python] faker 라이브러리 (0) | 2019.07.02 |
[Python] 설치된 패키지 목록 requirements.txt 만들기 (0) | 2019.05.13 |
[Python][ERROR] SSL: CERTIFICATE_VERIFY_FAILED (0) | 2019.05.06 |