Python教程

python的时间相关语法与格式

本文主要是介绍python的时间相关语法与格式,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

django中的时间

获取年月日

    from django.utils import timezone
    now_time = timezone.now()
    year = now_time.strftime("%Y")#结果为“2021”
    month = now_time.strftime("%m")#结果为‘05’
    day = now_time.strftime("%d")#结果为‘09’
    print( 'Sc'+ str(year)+str(month)+str(day)+'00001')#结果为“Sc2021050900001”

获取时间戳

import time
int(time.time())#结果为10位数“1620525254”
这篇关于python的时间相关语法与格式的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!