Mutations

  • + 0 comments

    def mutate_string(string, position, character): a = list(string) a[position] = character k = "".join(a) return k