python内置时间模块 time (时间戳) 作者:马育民 • 2024-04-10 23:06 • 阅读:10055 # 计算机中的时间 详见 https://www.malaoshi.top/show_1IX7UEucQffQ.html ### 验证上文 通过代码获取当前时间,距离 1970-01-01 00:00:00 的 **秒数** ``` import time t = time.time() print(t) print(t/60/60/24/365) # 换算成年 ``` 执行结果: ``` 1712761312.336804 54.3113049320397 ``` 原文出处:http://malaoshi.top/show_1IX7UEytLRxi.html