String interpolation seems like a fun language feature - that is, having a syntax like "I see ${n} apples"
where a local variable n is substituted into the string at the appropriate place.
However, I think this makes localization more difficult. The python approach of putting the substitutions afterwards is probably better.