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)

python 中文名:蟒蛇,设计者:Guido van Rossum
python 中文名:蟒蛇,设计者:Guido van Rossum
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)
