码迷,mamicode.com
首页 > 编程语言 > 详细

python 中关于时间的处理

时间:2015-10-12 17:00:04      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

获取当前时间

import time

import datetime

所用的方法:

strftime(format[, tuple]) -> string

获取当前日期

time.strftime(‘%Y-%m-%d-%H:%M:%S‘,time.localtime(time.time()))

或者

datetime.datetime.fromtimestamp(time.time()).strftime(‘%Y-%m-%d-%H:%M:%S‘)

 

python 中关于时间的处理

标签:

原文地址:http://www.cnblogs.com/myron-1/p/4871968.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!