[Python3] replace() 함수 - 문자열 치환

Song_Song·2021년 9월 4일
0
post-custom-banner

replace() 함수

문자열.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

profile
성장을 위한 정리 블로그

0개의 댓글