十、系统内置模块 9.时间模块 - time
2021/12/14 6:19:28
本文主要是介绍十、系统内置模块 9.时间模块 - time,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
时间模块 - time
时间戳 表示从1970年1月1日00时00分00秒到现在的秒数 time 该模块提供各种与时间相关的功能 time.time(t) 功能:返回当前系统时间戳 time.ctime(t) 功能:返回当前系统时间str time.localtime(t) 功能:返回当前系统时间tuple time.sleep(t) 功能:暂停当前线程的执行ts time.strftime(format,timetuple) 功能:格式化显示日期和时间 参数: timetuple:时间tuple,忽略则为当前时间 time.perf_counter() 功能:返回性能计数器的值(以秒为单位),即具有最高可用分辨率的时钟以测量短持续时间
import time # 时间戳 res = time.time() print(res) # 时间str res = time.ctime() print(res) # 时间tuple res = time.localtime() print(res) # 格式化时间显示 res = time.strftime('%F %T',res) print(res) # 计算程序运行时间 start = time.perf_counter() for i in range(10000): n = 10 + 20 end = time.perf_counter() time = end - start print(time) 1639415552.7433124 Tue Dec 14 01:12:32 2021 time.struct_time(tm_year=2021, tm_mon=12, tm_mday=14, tm_hour=1, tm_min=12, tm_sec=32, tm_wday=1, tm_yday=348, tm_isdst=0) 2021-12-14 01:12:32 0.0010861409999999294
这篇关于十、系统内置模块 9.时间模块 - time的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程
- 2024-11-26Springboot单体架构搭建资料:新手入门教程
- 2024-11-26Springboot单体架构搭建资料详解与实战教程
- 2024-11-26Springboot框架资料:新手入门教程
- 2024-11-26Springboot企业级开发资料入门教程
- 2024-11-26SpringBoot企业级开发资料详解与实战教程
- 2024-11-26Springboot微服务资料:新手入门全攻略