fork(1) download
  1. a = '36, 160, 70, 110, 9, 21.833, 208, 119'
  2. b = [float(i) for i in a.split(', ')]
  3. print(b)
Success #stdin #stdout 0.03s 9608KB
stdin
Standard input is empty
stdout
[36.0, 160.0, 70.0, 110.0, 9.0, 21.833, 208.0, 119.0]