본문 바로가기

Coding Test/Programmers

[프로그래머스/파이썬] JadenCase 문자열 만들기

728x90

나의 풀이

def solution(s):
    return ' '.join([word.capitalize() for word in s.split(' ')])

 

 

 

 

반응형