Consider this list of tuples:
my_list = [("a", "b"),("a", "b", "c"),("a",)]
Desirable outcome is:
my_list = ["ab", "abc","a"]
How can one achieve the result with minimal code?
All of my attempts have either lead to ineloquent block of code or have failed entirely as I can't find an easy way to replace the tuples with the strings within combined when the number of strings in the tuple is unknown.