fork download
  1. # your code goes here
  2. str = '0.4350 0.8798 0.0099 1';
  3. val = filter(None, str.split(' '));
  4. print val
Success #stdin #stdout 0s 23304KB
stdin
Standard input is empty
stdout
['0.4350', '0.8798', '0.0099', '1']