프로그래머스

대소문자 변환 코드

백준파이썬개발자:프로젝트골드 2024. 2. 22. 15:36
반응형
str = input()
    
print(str.swapcase())

 

반응형