I have a numpy array of time which is in seconds. I use the following code to convert seconds in to timestamp
m, s = divmod(seconds, 60)
h, m = divmod(m, 60)
for i in range(0, 24300):
print h[i],":", m[i],":", s[i]
I need to print this timestamp values either in a csv file like( 01:05:25,01:04:60, 05:04:2) or store in a numpy array.
Thanks in advance