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

[ad_1]

>>> 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

[ad_2]

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