Wymień przez pozycję ciągu na liście z innym łańcuchem Python
string = 'pythonhxamples'
position = 6
new_character = 'e'
string = string[:position] + new_character + string[position+1:]
print(string)
#output: pythonexamples
NandaBN