Deprecated: pk_vd_gt_validate(): Implicitly marking parameter $args as nullable is deprecated, the explicit nullable type must be used instead in /home2/xzgzscom/public_html/xzgzs.com/wp-content/themes/wordpress-theme-puock-2.8.12/inc/fun/core.php on line 1290
python获取时间戳 - 小志工作室 python获取时间戳 – 小志工作室

python获取时间戳

import time
print(time.time())#获当前时间的时间戳
print(time.localtime())#获取本地时间
print(time.strftime('%Y-%m-%d',time.localtime()))#时间格式化

运行结果

1640869331.2432263
time.struct_time(tm_year=2021, tm_mon=12, tm_mday=30, tm_hour=21, tm_min=2, tm_sec=11, tm_wday=3, tm_yday=364, tm_isdst=0)
2021-12-30

正文完
 0