[TIL]Day 152

이재희·2021년 4월 30일
0

TIL

목록 보기
152/312
def solution(s):
    answer = s.split(' ')
    for t in answer:
        t = t[0].upper() + t[1:].lower()
    return ' '.join(answer)
solution("3people unFollowed me")

위 처럼 코드를 작성했는데, answer list에 있는 원소들이 변화되지 않았다.

그리고 공백이 연속되어 있는 케이스 처리를 하지 않아 위에 코드를 수정해서 통과했다.

s.capitalize()
앞글자만 대문자로 만들어주는 함수

profile
오늘부터 열심히 산다

0개의 댓글