I guess I didn't explain well enough…
I have a string that gets a value every time a loop runs through. It runs through varying times depending on the number you put in. I want to get the value of of the string from each run and add them all together in another string.
ex.
1st loop run through : num = 1
2nd loop run through : num = 2
3rd loop run through : num = 3
answer = num + num + num
answer = 123
My problem is the code is adding it like this:
answer = 112123