파이썬[Python]: string - Template 클래스
string 모듈 - Template 클래스(class) /// 설명 문자열을 치환할 수 있는 객체입니다. $를 기반으로 합니다.($$=escape, $_, $alphabet, ${ }) ※ 형식 class string.Template(template) reference https://docs.python.org/release/3.10.0/library/string.html /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 from string import * test_str = '$first is a first name and $last is a last name' s = Template(test_str) print (s.substitute(first = 'alan' , last = 'Turing' )) # alan is a first name and Turing is a last name test_str = '${first} is a first name and ${last} is a last name' s = Template(test_str) print (s.substitute(first = 'alan' , last = 'Turing' )) # alan is a first name and Turing is a last n...