python format
Python09 :: python format, join
Python09 :: python format, join
2020.08.15format 문자열 포맷을 결정할 수 있습니다. count = 5 print("run {} program".format(count)) #result1 : run 5 program join alphabet = ['a', 'b', 'c', 'd', 'e'] print (",".join(alphabet)) print ("\n".join(alphabet)) #result1 : a,b,c,d,e #result2 : a b c d e join을 수행하면 문자열 뒤에 지정한 형식의 구분자가 포함되게 됩니다.