- replace python에서 특정 단어나 특정 문자열을 다른 단어나 문자열로 대체하는 방법이다. replace("찾을단어 또는 문자열", "대체할 단어 또는 문자열")) >>> python_str = "Python is Amazing" >>> print (python_str.replace("Python", "Java")) Java is Amazing >>> print (python_str.replace("n", "N")) PythoN is AmaziNg - find 특정 문자열이 있는 위치를 출력한다. >>> python_str = "Python is Amazing" >>> print (python_str.find("A")) 10 >>> print (python_str.find("a")) 12 >>..