코딩테스트/Python
프로그래머스 스쿨 - 소문자로 바꾸기(Python)
NOCKNOCK
2023. 8. 14. 10:41
def solution(myString):
answer = ''
answer = myString.lower()
return answer