datetime vs pandas.to_datetime在path.getmtime

时间:2018-11-18 01:03:01

标签: pandas datetime

pandas.to_datetime无法正确推断os.path.getmtime时间戳。有没有一种方法可以使用to_datetime代替datetime.date?

from datetime import date
from pandas import to_datetime
from os.path import getmtime
​
a = getmtime('example.txt')
a
1542074774.0

date.fromtimestamp(a).strftime('%Y-%m-%d')
'2018-11-12'

pandas.to_datetime(a).strftime('%Y-%m-%d')
'1970-01-01'

0 个答案:

没有答案