Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
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 31
Archives
Today
Total
관리 메뉴

RieloUo

[코드] 동일한 변수를 여러 번 출력할 때-format() 활용 본문

파이썬

[코드] 동일한 변수를 여러 번 출력할 때-format() 활용

RieloUo 2017. 7. 30. 15:56

print("a_%s,b_%s,c_%s,d_%s,e_%s,f_%s,g_%s" % (searchip,searchip,searchip,searchip,searchip,searchip,searchip))

print("a_{0},b_{0},c_{0},d_{0},e_{0},f_{0},g_{0}" .format(searchip))


[출력 결과] 

a_1,b_1,c_1,d_1,e_1,f_1,g_1

a_1,b_1,c_1,d_1,e_1,f_1,g_1



[참조 블로그] http://studymake.blogspot.kr/2015/05/python-format.html

 포맷팅을 하는 두 가지 방법 모두 장단점이 있으므로 상황에 따라 편한 쪽을 택해서 사용하면 된다.
예를 들어서 동일한 변수를 여러 번 출력할 때는 여기에서 소개한 방법이 더 유리하다.


>>> blah = ‘blah’
>>> print(“%s %s %s %s”%(blah, blah, blah, blah))
>>> print(“{0} {0} {0} {0}”.format(blah))


이와 같이 동일한 변수를 여러 번 출력할 경우 세 번째 줄과 같이 문자열의 format() 필드를 이용하면 두 번째 줄의 %-formatter보다 더 간략하게 사용할 수 있다.




Comments