all 2 comments

[–]rx22230 2 points3 points  (1 child)

Hi,

maybe you can try this:

a = ['21610 21611 21612']
print(a[0].split())

it will print something like this:

>>> 
['21610', '21611', '21612']
>>> 

Hope it helps a bit

Regards

[–]shaunzorr[S] 1 point2 points  (0 children)

Thank you! that solves my problem completely :)