문제 설명 및 제한사항
아이디어 및 해결 방법
코드
def solution(s):
answer = []
capitalize = True
for c in s:
if capitalize is True and c != ' ':
answer.append(c.upper())
capitalize = False
continue
if c == ' ':
answer.append(c)
capitalize = True
else:
answer.append(c.lower())
return ''.join(answer)
Python
복사
출처
프로그래머스 코딩테스트 연습 https://school.programmers.co.kr/learn/challenges