我正在尝试在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