질문&답변
2021.10.14
이게 왜 이럴까요ㅜㅜ
이미 해결하셨을 수도 있지만 글 남깁니다 대소문자 구분하시어 출력하시면 제대로 나오실 거예요! python = "Python is Amazing" >> 문자열의 첫 글자 대문자 >>> print(python.replace("python","Java")) X >>> print(python.replace("Python","Java")) O