Sorry for the stupid question, but why does this code return null ?
you are feeding strings! convert your data!
OUT = []
for i in IN[0]:
OUT.append(float(i))
1 Like
you are feeding strings! convert your data!
OUT = []
for i in IN[0]:
OUT.append(float(i))