Python - how to do operations on individual items in list or string
Hi i was wondering how in Python would you do represent something like this:
take string - 'abcdefg' add items in this string
'a' + 'b' = somevar
somevar + 'c' = someothervar
etc
Thanks