一、time模块
time.time() //时间戳
t = time.localtime() //将一个时间戳转换为当前时区
二 、random模块
随机生成内容
random.randint(1, 3) //随机生成传入参数范围内的数字 即 1,2,3
三、sys模块
sys.platform //返回操作系统平台名称
sys.stdin.readline() //读取一行
四、os模块
os模块是与操作系统交互的一个接口
os.getcwd() 获取当前工作目录,即当前python脚本工作的目录路径
os.curdir 返回当前目录: ('.')
os.environ 获取系统环境变量
五、math
math.sqrt(one_num) //开平方
六、re模块
ret=re.findall('abc{1,4}','abccc')
print(ret)#['abccc'] 贪婪匹配
七、logging模块
logging.debug('debug message')
logging.info('info message')
logging.warning('warning message')
logging.error('error message')
logging.critical('critical message')