文字列.split()で空白で区切られた文字列から文字をリストに取り出せる.たとえば,
In: sline=' xdef 10 linear 1 5'
In: sline.split()
Out: ['xdef', '10', 'linear', '1', '5']