I about me

[Python] 대소문자 바꿔서 출력하기 오답정리 본문

Algorithm/프로그래머스

[Python] 대소문자 바꿔서 출력하기 오답정리

ssungni 2024. 2. 8. 15:21

복습 포인트가 되었다...

isupper(), islower()

i.upper(), i.lower()

for문

str = input()
for i in str:
    if i.isupper():
        print(i.lower(), end='')
    if i.islower():
        print(i.upper(), end='')

 

그리고 새로운 것을 알게 되었다.

swapcase(): 영문 대소문자 상호 전환

str = input()
print(str.swapcase())