This one should be quick but for some reason I can't think of it. So say I have a list of elements n length (the number of elements will change at some point in the future). However, let's use this one as an example:
['ESZ12', 'ESH13', 'ESM13', 'ESU13', 'ESZ13']
Now what I would like is to output this into a string that looks like this:
("ESZ12", "ESH13", "ESM13", "ESU13, "ESZ13")
The first one is indeed a list of elements and the second is just a complete string.
Thanks
tuple(your_list).