How to replace character in string by index position in Python

2 Answers

0 votes
s = "python"
  
index = 3
replacement = 'W'

s = s[0:index] + replacement + s[index + 1:]

print(s)



'''
run:

pytWon

'''

 



answered Nov 4, 2021 by avibootz
0 votes
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

'''

 



answered Nov 4, 2021 by avibootz
...