728x90
반응형
문제 출처: https://school.programmers.co.kr/learn/courses/30/lessons/12951
풀이:
def solution(s):
res = s.split(" ")
for i in range(len(res)):
res[i] = res[i].capitalize()
return ' '.join(res)
def solution(s):
word = ' '.join(s.split(" ")).split()
for i in range(len(word)):
if not word[i][0].isdecimal():
word[i] = word[i][0].upper() + word[i][1:].lower()
return ' ' .join(word)
capitalize 안쓰고 풀려고 했는데 이게 왜 안되는지 도저히 이해가 안된다. 아시는 분 댓글점..
반응형
댓글