'I think, therefore I am.'
이라는 문자열을 'I eat, therefore I am.'
으로 치환하여 화면에 출력하는 프로그램을 작성하라.
코드
original_text = 'I think, therefore I am.'
replaced_text = original_text.replace('think', 'eat')
print(replaced_text)
실행 결과
I eat, therefore I am.
replace
메서드로 문자열 속의 특정 텍스트를 치환할 수 있다.