R3
Size: a a a
R3
VA
R3
VA
VA
R3
VA
R3
VA
VA
VA
py3
from operator import methodcaller
long = ['one, two, three', 'one, two, three', 'one, two, three']
short = list(map(methodcaller('split', ', '), long))
print(*short)
['one', 'two', 'three'] ['one', 'two', 'three'] ['one', 'two', 'three']
R3
VA
VA
R3
VA
VA
EA
py3
from operator import methodcaller
long = ['one, two, three', 'one, two, three', 'one, two, three']
short = list(map(methodcaller('split', ', '), long))
print(*short)
['one', 'two', 'three'] ['one', 'two', 'three'] ['one', 'two', 'three']
БГ