Mutations

  • + 0 comments

    def mutate_string(string, position, character): s=[i for i in string] s[position] = character s="".join(s) return s