1
You can split your string using the split()
method:
size = [u'L,M,S']
size = size[0].split(',') # [u'L', u'M', u'S']
Source:stackexchange.com
1
You can split your string using the split()
method:
size = [u'L,M,S']
size = size[0].split(',') # [u'L', u'M', u'S']