문자열 내 단어 바꾸기: replace()
replace()는 문자열 내 특정 단어를 새 단어로 바꾸는 함수이며, 다음과 같은 형식으로 사용합니다.
형식 | 변수명.replace("기존 단어", "새 단어")
코드를 수정하고 실행하면 World 문자열이 Python으로 바뀌어 출력됩니다.
ch03-string.py
string = "Hello World" result = string.replace("World", "Python") # World를 Python으로 교체
print(result)
실행결과 |
(중략)
Hello Python
|