On 02/05/2016 07:09 PM, lucan wrote:
What do you mean? What is "datas"? What do you mean by "correct"?
"datas" I mean the values for example temperature = 20.4 (so they are
floating point)
Index time temp
1 10:24 20.4
2 10:25 20.6
...
I wonder if this is correct "my way" to write a csv file:
file.write('\n'+str(index))
f.write(str(index)+','+str(now.hour)+':'+str(now.minute)+','+str(temp))
Or if there is a better way to do that.
If you got your newlines and headers (if the other program requires it)
right, this should be all you need.
--
https://mail.python.org/mailman/listinfo/python-list