(python)把带时区的时间字符串转成datetime格式

#用的python3.6,在window下

import dateutil.parser    # dateutil.parser模块 在window下是python自带的包,在linux下好像不一定是自带

dt=dateutil.parser.parse(string)   #用的 dateutil.parser模块的parse函数


eg:

string='2017-06-01 00:04:52-04:00'


>>> import dateutil.parser
>>> string='2017-06-01 00:04:52-04:00'
>>> dt=dateutil.parser.parse(string)
>>> dt

datetime.datetime(2017, 6, 1, 0, 4, 52, tzinfo=tzoffset(None, -14400))


暂时只会这种方法,以后有再添加


你可能感兴趣的:(python)