I have a following string:
s_tring = 'abcd,efgh,igkl,mnop,qrst,uvwx,yz'
I want to create a list and split it by commas and put quotes around each element like this:
some_list = '"abcd", "efgh", "igkl", "mnop", "qrst", "uvwx", "yz"'
I have tried doing something like this:
some_list = '","'.join(s_tring)
But it doesn't work.