python 字符串和日期之间转换 stringanddate
这里给出实现代码,直接可以使用。大家可以看下。
实例代码:
''''' created on 2013-7-25 @author: administrator ''' from datetime import datetime class stringanddate(object): ''''' string to date(datetime) or date to string ''' def stringtodate(self,string): #example '2013-07-22 09:44:15+00:00' dt = datetime.strptime(string, "%y-%m-%d %h:%m:%s+00:00") #print dt return dt ''''' date(datetime) to string ''' def datetostring(self,date): ds = date.strftime('%y-%m-%d %h:%m:%s') return ds ''''' return n hours after datetime ''' def getafterdate(self,n): dnow = datetime.datetime.now() dafter = dnow + datetime.timedelta(hours=n) #dafter.ctime() return dafter
【相关推荐】
1. 特别推荐:“php程序员工具箱”v0.1版本下载
2. python免费视频教程
3. python面向对象视频教程
以上就是详解python中stringanddate的用法的详细内容。