Would anyone be able to tell me why the given solution to this problem works? In an earlier lesson we learned that strings are immutable. It seems like the process of iterating through the letters in the given word and then adding every other one to the string every_other would necessarily require us to change the string every_other.
Is it that strings can be added to, but the individual characters in strings can’t be removed or swapped without creating a new string?