[Solved] Coverting a python list into string with comma separated in efficient way [closed]


>>> list1 = ['1234','3456','2345','5543','1344','5679','6433','3243','0089']
>>> print(','.join(["'{0}'".format(s) for s in list1]))
'1234','3456','2345','5543','1344','5679','6433','3243','0089'

1

solved Coverting a python list into string with comma separated in efficient way [closed]