以unix格式给出时间的datetime验证?

时间:2017-06-23 01:16:53

标签: python validation date datetime

我正在尝试在python中进行日期/时间验证,我可以使用datetime模块来实现它。我的问题是,我得到的数据是epoch格式。 如何通过传递纪元格式来实现同样的目标?

到目前为止,我在python docs中的搜索失败了。任何提示或线索都非常感谢。

datetime.datetime(year=2017, month=1,day=1) < 
datetime.datetime(year=2017,month=6,day=23,hour=2) >= datetime.datetime.now()
False

datetime.datetime(year=2017, month=1,day=1) < 
datetime.datetime(year=2017,month=6,day=24,hour=2) >= datetime.datetime.now()
True

0 个答案:

没有答案