In Python (version 3.6,) how would I write a line of code to concatenate a set of calculations from a list together?
I was practicing writing a simple program with a list that had an output with some random numbers I chose, (4, 13, 21, 32, 40)
I'm still new to learning Python, and trying to practice concatenation. So for the code I've written, I now want to alter it slightly, so each new calculation concatenates with the previous one, to form a different number. I'm trying to get the new output to be: (4, 413, 41321, 4132132, 413213240)