python string replace on index code example
Example 1: python str replace specifiek index
s = s[:index] + newstring + s[index + 1:]
Example 2: python string replace by index
def replace_str_index(text,index=0,replacement=''):
return '%s%s%s'%(text[:index],replacement,text[index+1:])