JadenCase란 모든 단어의 첫 문자가 대문자이고, 그 외의 알파벳은 소문자인 문자열입니다. 문자열 s가 주어졌을 때, s를 JadenCase로 바꾼 문자열을 리턴하는 함수, solution을 완성해주세요.
s | return |
---|---|
unFollowed me | 3people Unfollowed Me |
for the last week | For The Last Week |
def solution(s):
answer = []
new_s=s.split(" ")
#공백이 들어갈 경우 대비(ex. 3people Unfollwed Me)
#split()말고, split(" ")이라고 공백 하나만 들어가게 할 것
for x in new_s:
answer.append(x.lower().capitalize())
return ' '.join(answer)
문제 출처 : https://programmers.co.kr/learn/courses/30/lessons/12951