获取年月日
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”