프로그래머스_문자열대소문자

Written on July 21, 2019

문제

문자열 s는 한 개 이상의 단어로 구성되어 있습니다. 각 단어는 하나 이상의 공백문자로 구분되어 있습니다. 각 단어의 짝수번째 알파벳은 대문자로, 홀수번째 알파벳은 소문자로 바꾼 문자열을 리턴하는 함수, solution을 완성하세요.

풀이

def solution(s):
    answer = ''
    c_index = 0
    for c in s:
        if c != ' ':
            if(c_index % 2 == 0):
                answer = answer + c.upper()
            else:
                answer = answer + c.lower()
            c_index = c_index + 1
        else:
            answer = answer + ' '
            c_index = 0
    return answer

👩🏻‍💻 배우는 것을 즐기는 프론트엔드 개발자 입니다
부족한 블로그에 방문해 주셔서 감사합니다 🙇🏻‍♀️

in the process of becoming the best version of myself