python日期时间转为字符串或者格式化输出的实例
作者:lanyang123456 时间:2021-06-26 17:12:12
如下所示:
年月日时分秒
>>> print datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
2017-07-15 15:01:35
年月日 小时分钟
>>> print datetime.datetime.now().strftime("%Y-%m-%d %H:%M")
2017-07-15 15:01
年月日
>>> print datetime.datetime.now().strftime("%Y%m%d")
20170715
来源:https://blog.csdn.net/lanyang123456/article/details/75172186
标签:python,字符串,格式化,输出
![](/images/zang.png)
![](/images/jiucuo.png)
猜你喜欢
有意思的数据结构默克树 Merkle tree应用介绍
2022-08-19 22:58:50
![](https://img.aspxhome.com/file/2023/6/131916_0s.png)
mysql 5.6.14主从复制(也称mysql AB复制)环境配置方法
2024-01-22 07:23:57
![](https://img.aspxhome.com/file/2023/5/82265_0s.jpg)
使用python os模块复制文件到指定文件夹的方法
2022-01-06 13:23:01
Python中的pack和unpack的使用
2023-08-20 05:24:33
linux系统使用python获取cpu信息脚本分享
2021-10-18 17:45:30
![](https://img.aspxhome.com/file/2023/3/131453_0s.jpg)
Python下载手机小视频的操作方法
2022-11-16 02:40:55
![](https://img.aspxhome.com/file/2023/7/77847_0s.png)
Python多线程中阻塞(join)与锁(Lock)使用误区解析
2022-03-22 08:00:31
windows10安装mysql5.7.17教程
2024-01-26 17:26:04
![](https://img.aspxhome.com/file/2023/0/124510_0s.jpg)
VUE中如何动态绑定类名和样式
2024-04-26 17:41:35
Docker + Nodejs + Kafka + Redis + MySQL搭建简单秒杀环境
2024-01-21 23:22:38
![](https://img.aspxhome.com/file/2023/2/118142_0s.png)
Javascript基础学习之十个重要问题
2023-07-14 09:17:52
python实现图像识别功能
2023-08-09 08:45:00
基于FlashPaper实现JSP在线阅读代码示例
2023-06-14 21:02:31
Python 编码处理-str与Unicode的区别
2021-04-15 15:38:43
python 采用paramiko 远程执行命令及报错解决
2021-01-23 19:17:16
python-pymongo常用查询方法含聚合问题
2021-02-10 21:35:36
Python实现对excel文件列表值进行统计的方法
2022-08-08 17:42:23
查询mysql中执行效率低的sql语句的方法
2024-01-24 09:58:36
python实现大文本文件分割
2023-09-03 10:00:53
Go Struct结构体的具体实现
2023-09-02 04:54:01
![](https://img.aspxhome.com/file/2023/1/101041_0s.png)