python时间处理datetime.strftime方法详解

datetime.strftime方法功能作用

datetime模块的datetime对象提供的strftime方法将datetime对象转为指定格式的字符串。strftime方法是strptime的逆方法。

datetime.strftime方法语法

datetime.strftime(format)

参数

  • format 转换格式

返回值

字符串

示例代码

>>> from datetime import datetime
>>> now = datetime.now()
>>> now.strftime("%Y-%m-%d")
'2022-06-02'
>>> now.strftime("%Y-%m-%d %H:%M:%S")
'2022-06-02 07:57:11'
>>> now.strftime("%Y年%m月%d号") 
'2022年06月02号'

扫描关注, 与我技术互动

QQ交流群: 211426309

加入知识星球, 每天收获更多精彩内容

分享日常研究的python技术和遇到的问题及解决方案