python--一起来盖个时间戳!!

1、datetime

import datetime
print(datetime.datetime.now())

  

 2、time

import time
otherStyleTime = time.strftime("%Y/%m/%d %H:%M:%S", time.localtime())
print(otherStyleTime)

  

原文地址:https://www.cnblogs.com/lutt/p/12320775.html