문자열.relace(a, b) 는 문자열에 포함된 a를 b로 치환하는 함수이다.
s = "onetwothreeonetwoone" replace_s = s.replace("one", "ONE") print(replace_s)
출력 : ONEtwothreeONEtwoONE
함수에 세 번째 파라메터를 추가하면 치환하는 문자열의 개수를 조절할 수 있다. 먼저 검색된 순서대로 파라메터의 수 만큼만 치환된다.
s = "onetwothreeonetwoone" replace_s_2 = s.replace("one", "ONE", 2) print(replace_s_2)
출력 : ONEtwothreeONEtwoone