You are viewing a single comment's thread. Return to all comments →
def mutate_string(string, position, character):
s_new = string[:5] + "k" +string[6:] return s_new
if name == 'main':
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):
s_new = string[:5] + "k" + string[6:]
if name == 'main':