Python and Matlab quite often have integer date representations as follows:
733828.0
733829.0
733832.0
733833.0
733834.0
733835.0
733836.0
733839.0
733840.0
733841.0
These numbers correspond to some dates this year. Do you know which function can convert them back to YYYYMMDD format?
The
datetime.datetimeclass can help you here. The following works, if those values are treated as integer days (you don’t specify what they are).You show the values as floats, and the above doesn’t take floats. If you can give more detail about what the data is (and where it comes from) it will be possible to give a more complete answer.