출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기

생각보다 쉬운 문제이다. 문제에도 설명이 거의 나와 있어서 따라하면 된다(물론 난 따라한 것은 아니다):

def mutate_string(string, position, character):
    string_list = list(string)
    string_list[position] = character
    return ''.join(string_list)

if __name__ == '__main__':
    s = input()
    i, c = input().split()
    s_new = mutate_string(s, int(i), c)
    print(s_new)