문제

'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.

해설