본문 바로가기
프로그래머스/2단계

(Python/LV2) JadenCase 문자열 만들기

by windy7271 2022. 9. 19.
728x90
반응형

 

문제 출처: https://school.programmers.co.kr/learn/courses/30/lessons/12951

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

풀이:

def solution(s):
    res = s.split(" ")
    for i in range(len(res)):
        res[i] = res[i].capitalize()
    return ' '.join(res)

 

def solution(s):
    word = ' '.join(s.split(" ")).split()
    for i in range(len(word)):
        if not word[i][0].isdecimal():
            word[i] = word[i][0].upper() + word[i][1:].lower()
    return ' ' .join(word)

 

capitalize 안쓰고 풀려고 했는데 이게 왜 안되는지 도저히 이해가 안된다. 아시는 분 댓글점..

반응형

댓글