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()
앞글자만 대문자로 만들어주는 함수