Code block returns null for a simple calculation. Why?

Sorry for the stupid question, but why does this code return null ?

@jnoordzij ,

you are feeding strings! convert your data!


OUT = []

for i in IN[0]:
    OUT.append(float(i))

1 Like