In a specific string I would be given start position and length.
for eg input string "abcdefgh"
. start position : 3
and length :2
. I want to replace characters with space
so the output string should " ab efgh"
.
how can i do that in python?