티스토리 뷰


먼저 lower()을 이용해 모두 소문자로 바꾸고 split()을 이용해 단어별로 자르고,

문자열 변수에 capitalize() 함수를 이용해 저장한다.

문제풀이

def Jaden_Case(s):
    string = ""
    lst = s.lower().split()
    for rpt in range(0,len(lst)):
        string = string + lst[rpt].capitalize() + " "
    return string[0:len(string)-1]

# 아래는 테스트로 출력해 보기 위한 코드입니다.
print(Jaden_Case("3people unFollowed me for the last week"))


댓글
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Total
Today
Yesterday