You are viewing a single comment's thread. Return to all comments →
****def mutate_string(string, position, character): list_str=list(string) position=position list_str[position]=str(character) result=''.join(list_str) return result
Seems like cookies are disabled on this browser, please enable them to open this website
Mutations
You are viewing a single comment's thread. Return to all comments →
****def mutate_string(string, position, character): list_str=list(string) position=position list_str[position]=str(character) result=''.join(list_str) return result