I'm a novice Python user trying to do something that I think should be simple but can't figure it out. I've got 2 variables defined:
a = 'lemon'
b = 'lime'
Can someone tell me how to combine these in a new variable?
If I try:
>>> soda = "a" + "b"
>>> soda
'ab'
I want soda to be 'lemonlime'
. How is this done?
Thanks!