Python模块
import time
from time import * #导入time中所有的函数
from file1.lile2.file3 import time #多级目录导入文件
time模块
time.sleep(5) #睡眠5s
time.clock()
time.time() #获取当时时间(按秒显示)
time.localtime() #获取时间
Python模块
import time
from time import * #导入time中所有的函数
from file1.lile2.file3 import time #多级目录导入文件
time模块
time.sleep(5) #睡眠5s
time.clock()
time.time() #获取当时时间(按秒显示)
time.localtime() #获取时间