python常用内置模块(内附随机验证码程序、模拟登陆程序“密码为md5密文”)
python常用内置模块
1、time模块
time模块:普通时间模块
在python中的三种时间表现形式:
(1)time.time():时间戳:(机器看的)
从1970.01.01 00:00:00到当前时间,按秒计算,计算了多少秒
>>> time.time():时间戳,计算时间时需要使用(*****)
# 1.时间戳:计算时间时需要用 import time
print(time.time())