Contact: aviboots(AT)netvision.net.il
39,941 questions
51,879 answers
573 users
s = "python" index = 3 replacement = 'W' s = s[0:index] + replacement + s[index + 1:] print(s) ''' run: pytWon '''
def replace_char_at_index(s, index, replacement): new_str = s if index < len(s): new_str = s[0:index] + replacement + s[index + 1:] return new_str s = "python" s = replace_char_at_index(s, 3, 'W') print(s) ''' run: pytWon '''