欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

时间戳

程序员文章站 2022-07-03 14:49:21
...

可以用来命名文件的时间戳

import os, sys, time, datetime
currentTime = datetime.datetime.now()
arg1 = currentTime.strftime("%H-%M")
arg2 = currentTime.strftime("%Y-%m-%d %H:%M")
starttime = time.clock()
print arg1,arg2,starttime
file = "D:/workplace/report_%s.txt" % arg1
report = open(file, 'w')