I have the following list of strings:
a = ['a','the quick fox', 'b', 'c', 'hi there']
How can I transform it into:
'a','the quick fox', 'b', 'c', 'hi there'
I tried to:
"','".join(a)
However, its returning me this:
"hey','the quick fox','b','c','hi there"
Instead of:
'hey','the quick fox','b','c','hi there'