728x90
https://programmers.co.kr/learn/courses/30/lessons/12951
upper와 lower함수를 사용해서 바꿔주었다
파이썬 str은 부분할당이 불가능하기 때문에 바꿀때마다 answer에 저장해주었다
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
def solution(s):
answer = ''
split_s = s.split(" ")
for sp in split_s:
for s in range(len(sp)):
if s == 0:
answer += sp[s].upper()
else:
answer += sp[s].lower()
if sp == split_s[len(split_s) - 1]:
break
answer += ' '
return answer
|
cs |
728x90
'PS > 프로그래머스' 카테고리의 다른 글
[프로그래머스 LV 2] 순위 검색 파이썬/python (0) | 2021.06.04 |
---|---|
[프로그래머스 LV 2] 튜플 파이썬/python (0) | 2021.06.03 |
[프로그래머스 LV 2 ] 수식 최대화 파이썬/python (0) | 2021.06.03 |
[프로그래머스 LV 2] 예상 대진표 파이썬/python (0) | 2021.06.03 |
[프로그래머스 LV 2] 메뉴 리뉴얼 파이썬 (0) | 2021.05.19 |