def solution(s):
answer = []
n_answer = s.split(" ")
print(n_answer)
for i in n_answer:
for idx, j in enumerate(list(i)):
if idx%2 == 0:
answer.append(j.upper())
else:
answer.append(j.lower())
answer.append(" ")
return "".join(answer)[:-1]
'Coding Test > Programmers_Python' 카테고리의 다른 글
[프로그래머스/python] 콜라츠 추측 (0) | 2020.07.29 |
---|---|
[프로그래머스/python] 제일 작은 수 제거하기 (0) | 2020.07.29 |
[프로그래머스/python] 문자열 내림차순으로 배치하기 (0) | 2020.07.28 |
[프로그래머스/python] 문자열 내 마음대로 정렬하기 (0) | 2020.07.28 |
[프로그래머스/python] [1차] 비밀지도 (2018 KAKAO BLIND RECRUITMENT) (0) | 2020.07.28 |