美文网首页
Python string 与 datetime 相互转化

Python string 与 datetime 相互转化

作者: linyk3 | 来源:发表于2018-08-21 17:06 被阅读0次

简书
github

使用Python库中的datetime实现字符串string和datetime之间的格式转化

将时间转化为特定格式地字符串:

str = dateNow.strftime("%Y%m%d %H:%M:%S")

将特定格式的字符串转化为时间

date2 = datetime.datetime.strptime(str, "%Y%m%d %H:%M:%S")

完整代码

#!/usr/bin/env python
# -*- coding:utf-8 -*-

# @Author   : linyk3
# @E-Mail   : linyk3@126.com.com
# @GitHub   : https://github.com/lyk2655
# @Blog     : https://www.jianshu.com/u/4242c25feb84

import datetime

# 获取当前时间
dateNow = datetime.datetime.now()
print("当前时间:", dateNow)

# 将datetime转化为特定格式的字符串
str = dateNow.strftime("%Y%m%d %H:%M:%S")
print("将datetime转化为特定格式的字符串[%Y%m%d %H:%M:%S]:", str)

# 将特定格式的字符串转化为datetime
date2 = datetime.datetime.strptime(str, "%Y%m%d %H:%M:%S")
print("将特定格式的字符串转化为datetime:", date2)
执行结果

相关文章

网友评论

      本文标题:Python string 与 datetime 相互转化

      本文链接:https://www.haomeiwen.com/subject/pcujiftx.html