时间模块 import time # 引入时间模块 print(time.time()) # 1508146954.9455004: 时间戳 print(time.clock()) # 计算CPU执行时间 print(time.gmtime()) # UTC时间 print(time.localtime()) # 本地时间 print(time.strftime("%Y-%m-%d %H:%M:%S")) %Y Year with century as a decimal number…
1.datetime 模块 为日期和时间处理同时提供了简单和复杂的方法.支持日期和时间算法的同时,实现的重点放在更有效的处理和格式化输出.该模块还支持时区处理: 简单例子: from datetime import date now = date.today() now Out[9]: datetime.date(2019, 4, 28) now.strftime("%m-%d-%y. %d %b %Y is a %A on the %d day of %B.") Out[10]: '…
一.复习 看下面一段代码,假如运行结果有问题,那么就需要在每一步计算时,打印一下结果 b = 1 c = 2 d = 3 a = b+c print(a) e = a + d print(e) 执行输出: 36 但是线上的程序,是不允许随便print的,这个时候,就需要用到logging模块 import logging logging.basicConfig(level=logging.DEBUG,filename = 'userinfo.log') b = 1 c = 2 d = 3 a =…