I have a list of item:
list1 = ['abs', 'cbs', 'dbs']
which I need to convert like this
abs,cbs,dbs
I have used ','.join(list1)
which gives me the following output 'abs,cbs,dbs'
. Now I am unable to proceed to just remove quotes. I am using python 2.6. Any other way to directly convert list into desired output is most welcome.
This question has answer in itself, the output has been misinterpreted.