>>> from env_helper import info; info()
待更新

5.5. 回顾 Python 的时间函数

在Python中,日期和时间可能涉及好几种不同的数据类型和 函数。下面回顾了表示时间的3种不同类型的值:

  • Unix纪元时间戳( time 模块中使用)是一个浮点值或 整型值,表示自1970年1月1日午夜0点 (UTC) 以来的秒数。

  • datetime对象(属于datetime模块)包含一些整 型值,保存在yearmonthdayhourminutesecond等属性中。

  • timedelta 对象(属于 datetime 模块)表示的一段 时间,而不是一个特定的时刻。

下面回顾了时间函数及其参数和返回值:

  • time.time() 函数返回一个浮点值, 表示当前时刻的Unix 纪元时间戳。

  • time.sleep(seconds)函数让程序 暂停seconds参数指定的秒数。

  • datetime.datetime(year, month, day,hour,minute, second) 函数返回参数指定的时刻的datetime对象。 如果没有提供hourminutesecond参数,它们默认为0。

  • datetime.datetime.now()函数返回当前 时刻的datetime对象。

  • datetime.datetime.fromtimestamp(epoch)函数 返回 epoch时间戳参数表示的时刻的datetime对象。

  • datetime.timedelta(weeks, days, hours,minutes, seconds, milliseconds, microseconds) 函数返回一个表示一段时间的 timedelta 对象。 该函数的关键字参数都是可选的,不包括 monthyear

  • total_seconds() 方法用于timedelta对象, 返回timedelta对象表示的秒数。

  • strftime(format)方法返回一个字符串, 用 format 字符串中的定制格式来表示 datetime 对象表不的时间。详细格式参见表15-1。

  • datetime.datetime.strptime(time_string,format)函数 返回一个datetime对象,它的时刻由time_string指定, 利用format字符串参数来解析。详细格式参见表15-1。