python datetime timestamp
python time, datetime, string, timestamp相互转换_野导_D_Dark_新浪博客
>>> time.time() 1355749338.05917 |
python时间,日期,时间戳处理 – xiaobing的专栏 – 博客频道 – CSDN.NET
代码:
curTimestamp = time.time() app.logger.debug(“type(curTimestamp)=%s, curTimestamp=%s”, type(curTimestamp), curTimestamp) qrcodeFullPath = “/tmp/%.3f.jpg” % (curTimestamp) |
输出:
type(curTimestamp)=<type ‘float’>, curTimestamp=1472214201.923 <div–<—————————————————————————— <div–<—————————————————————————— DEBUG in views [/usr/share/nginx/html/SIPEvents/sipevents/views.py:445]: qrcodeFullPath=/tmp/1472214201.923.jpg |
转载请注明:在路上 » [已解决]Python中datetime的timestamp