def solution(s):
answer = ''
s = s.split(' ')
for i in range(len(s)):
s[i] = s[i].capitalize()
answer = ' '.join(s)
return answer
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
프로그래머스 문자열 내 마음대로 정렬하기 (0) | 2022.10.08 |
---|---|
프로그래머스 영어 끝말잇기 python 파이썬 (0) | 2022.10.08 |
프로그래머스 최솟값 만들기 python 파이썬 (0) | 2022.10.07 |
프로그래머스 최댓값과 최솟값 python 파이썬 (0) | 2022.10.07 |
프로그래머스 문자열 내 p와 y의 개수 python 파이썬 (0) | 2022.10.07 |