문제
https://school.programmers.co.kr/learn/courses/30/lessons/120893
설계
def solution(my_string):
answer = ''
for word in my_string:
if word.isupper():
answer += word.lower()
elif word.islower():
answer += word.upper()
return answer
'PS (Problem Solving) > Programmers' 카테고리의 다른 글
[프로그래머스] 가위 바위 보 - 파이썬 (0) | 2023.01.20 |
---|---|
[프로그래머스] 암호 해독 - 파이썬, 자바스크립트 (0) | 2023.01.20 |
[프로그래머스] 주사위의 개수 - 파이썬 (0) | 2023.01.20 |
[프로그래머스] 짝수 홀수 개수 - 파이썬, 자바스크립트 (0) | 2023.01.19 |
[프로그래머스] 배열 자르기 - 파이썬, 자바스크립트 (0) | 2023.01.19 |