I'm sorry if this is a duplicate question, but I am new to Python and not quit sure how to ask for what I need. In the most basic sense, I would like to turn this:
a = ['10', '20', '30']
Edit:
It actually:
a = [10, 20, 30]
into
a = ['102030']
Thank you so much for your help!