Is it possible to generate a line of float numbers using a for loop where it just appends to the line like a list but is not a list. I'm restricted by a command that only understands data given in a line of float numbers.
Or is it possible to convert a list that contains float numbers to a line of float numbers.
eg:
myList = [0.0,0.452,0.6778,0.12]
I want to convert that so it's a list of numbers in a line 0.0 0.452 0.6778 0.12