728x90
s = "for the last week"
answer = 0
def solution(s):
s = s.split(' ')
for i in range(len(s)):
s[i] = s[i].capitalize()
print(s[i])
answer=' '.join(s)
print(answer)
return answer
solution(s)
728x90
'코딩테스트 > Python' 카테고리의 다른 글
프로그래머스 스쿨 - 당구 연습(Python)(복습) (0) | 2023.10.09 |
---|---|
프로그래머스 스쿨 - 요격 시스템(Python)(복습) (0) | 2023.10.08 |
프로그래머스 스쿨 - 신고 결과 받기(Python)(복습) (0) | 2023.10.06 |
프로그래머스 스쿨 - 바탕화면 정리(Python)(복습) (0) | 2023.10.05 |
프로그래머스 스쿨 - 달리기 경주(Python)(복습) (0) | 2023.10.04 |