https://school.programmers.co.kr/learn/courses/30/lessons/181942
문제
코드
def solution(str1, str2):
answer = ''
for i in range(0, len(str1)):
answer = answer + str1[i] + str2[i]
return answer
'코딩테스트' 카테고리의 다른 글
[프로그래머스] Python - Lv.0 문자열 곱하기 (0) | 2024.04.17 |
---|---|
[프로그래머스] Python - Lv.0 문자 리스트를 문자열로 변환하기 (0) | 2024.04.17 |
[프로그래머스] Python - Lv.0 문자열 겹쳐쓰기 (0) | 2024.04.17 |
[프로그래머스] Python - Lv.0 홀짝 구분하기 (0) | 2024.04.17 |
[프로그래머스] Python - Lv.0 문자열 돌리기 (0) | 2024.04.17 |