time库:提供各种与时间有关的功能
#引入time模块
import time as t
#查看time模块常用方法
print(dir(t))
#打印时间戳(整型)
print(int(t.time()))
#打印当前时间
print(t.localtime())
#格式化打印当前时间
print(t.strftime('%Y-%m-%d %H:%M:%S'))
#休眠2秒后打印helloword
print('休眠2s后打印helloword')
t.sleep(2)
print('helloword')