I am wondering what is the most pythonic way to do the following and have it work:
strings = ['a','b']
for s in strings:
s = s+'c'
obviously this doesn't work in python but the result that I want to acheive is
strings = ['ac','bc']
Whats the most pythonic way to achieve this kind of result?
Thanks for the great answers!