How to replace a character at a specific index in a string with Python

1 Answer

0 votes
def replace_character(s, idx, ch) : 
    length = len(s) 
    if (idx < 0 or idx > length) : return s
    s = list(s)
  
    s[idx] = ch
     
    return "".join(s)


s = "python programming"
       
s = replace_character(s, 7, 'G')

print(s)


 
 
'''
run:
 
python Grogramming
 
'''

 



answered Nov 16, 2019 by avibootz
...