首页 > Python > 正文

python中string转换为datetime

标签:python

python中将string转换为datetime类型比较简单。只要注意待转换字符串格式要跟正则表达式一致。另外还需要注意年月日的代表字母,比如年是%Y

from datetime import datetime
datetime_object = datetime.strptime('2018-04-26 11:30:00', '%Y-%m-%d %H:%M:%S')
print(type(datetime_object))

输出为:

<class 'datetime.datetime'>

原创文章,转载请注明出处!
本文链接:http://youran.tech/posts/python-string_to_datetime.html
上篇: Ubuntu16.04下如何安装显卡驱动、cuda、cudnn
下篇: python中UnicodeDecodeError:'gb2312'codec can't decode bytes:illegal multibyte sequence解决办法

留言: