时间戳
程序员文章站
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')
上一篇: django中的bug(持续更新)
下一篇: 时间戳