time模块 import time print(help(time)) time.time() #return current time in seconds since the Epoch as a float 时间戳:以秒的形式返回当前时间,从1970年算起 time.clock() #return CPU time since process start as a float 只计算CPU执行的时间 time.sleep() # delay for a number of second…