You are viewing a single comment's thread. Return to all comments →
def mutate_string(string, position, character): ns = string[:int(position)]+character[0]+string[int(position+1):] return ns
if name
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): ns = string[:int(position)]+character[0]+string[int(position+1):] return ns
if name