https://school.programmers.co.kr/learn/courses/30/lessons/181943
문제
코드
def solution(my_string, overwrite_string, s):
answer = my_string[:s] + overwrite_string + my_string[len(overwrite_string)+s:]
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 |