Python基于datetime或time模块分别获取当前时间戳的方法实例


Posted in Python onFebruary 19, 2019

python的时间模块生成时间戳的方法是非常简单的,因为最近频繁用到了时间戳功能,这里简单总结了一下日常使用最为频繁的两个时间模块各自生成当前时间戳的方法,很简单,具体如下:

now_time=str(datetime.datetime.now().strftime('%Y%m%d'))
nowTime=str(time.strftime('%Y%m%d',time.localtime(time.time())))
print 'now_time:',now_time
print 'nowTime:',nowTime

结果如下:

now_time: 20181226
nowTime: 20181226

上面是生成年月日的时间戳,如果要精确到秒级可以使用下面的方法:

now_time=str(datetime.datetime.now().strftime('%Y%m%d%H%M%S'))
nowTime=str(time.strftime('%Y%m%d%H%M%S',time.localtime(time.time())))
print 'now_time:',now_time
print 'nowTime:',nowTime

结果如下:

now_time: 20181226091741
nowTime: 20181226091741

当然想使用不同的分隔符号还可以有下面的形式:

now_time=str(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'))
nowTime=str(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time())))
print 'now_time:',now_time
print 'nowTime:',nowTime

now_time=str(datetime.datetime.now().strftime('%Y/%m/%d/%H:%M:%S'))
nowTime=str(time.strftime('%Y/%m/%d/%H:%M:%S',time.localtime(time.time())))
print 'now_time:',now_time
print 'nowTime:',nowTime

结果如下:

now_time: 2018-12-26 09:18:58
nowTime: 2018-12-26 09:18:58
now_time: 2018/12/26/09:18:58
nowTime: 2018/12/26/09:18:58

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对三水点靠木的支持。如果你想了解更多相关内容请查看下面相关链接

Python 相关文章推荐
Python3导入自定义模块的三种方法详解
Apr 13 Python
python一行sql太长折成多行并且有多个参数的方法
Jul 19 Python
Python求离散序列导数的示例
Jul 10 Python
对python中UDP,socket的使用详解
Aug 22 Python
python制作朋友圈九宫格图片
Nov 03 Python
Python线程threading模块用法详解
Feb 26 Python
浅谈python 调用open()打开文件时路径出错的原因
Jun 05 Python
基于K.image_data_format() == 'channels_first' 的理解
Jun 29 Python
pytorch 计算Parameter和FLOP的操作
Mar 04 Python
用Python实现一个打字速度测试工具来测试你的手速
May 28 Python
Python编写冷笑话生成器
Apr 20 Python
基于Python编写一个监控CPU的应用系统
Jun 25 Python
Python子类继承父类构造函数详解
Feb 19 #Python
Python 隐藏输入密码时屏幕回显的实例
Feb 19 #Python
Python3标准库总结
Feb 19 #Python
Python语言检测模块langid和langdetect的使用实例
Feb 19 #Python
对python周期性定时器的示例详解
Feb 19 #Python
Python3数字求和的实例
Feb 19 #Python
对Python定时任务的启动和停止方法详解
Feb 19 #Python
You might like
PHP批量上传图片的具体实现方法介绍.
2014/02/26 PHP
PHP mysql事务问题实例分析
2016/01/18 PHP
Yii2.0多文件上传实例说明
2017/07/24 PHP
php依赖注入知识点详解
2019/09/23 PHP
javascript生成/解析dom的CDATA类型的字段的代码
2007/04/22 Javascript
JavaScript 动态创建VML的方法
2009/10/14 Javascript
javascript下利用arguments实现string.format函数
2010/08/24 Javascript
javascript ie6兼容position:fixed实现思路
2013/04/01 Javascript
jQuery获取标签文本内容和html内容的方法
2015/03/27 Javascript
原生js与jQuery实现简单的tab切换特效对比
2015/07/30 Javascript
JS组件Bootstrap实现弹出框和提示框效果代码
2015/12/08 Javascript
JavaScript函数中关于valueOf和toString的理解
2016/06/14 Javascript
原生js实现网易轮播图效果
2020/04/10 Javascript
详解使用vue-router进行页面切换时滚动条位置与滚动监听事件
2017/03/08 Javascript
vue项目中运用webpack动态配置打包多种环境域名的方法
2019/06/24 Javascript
解决vue单页面应用打包后相对路径、绝对路径相关问题
2020/08/14 Javascript
[24:42]VP vs TNC Supermajor小组赛B组 BO3 第三场 6.2
2018/06/03 DOTA
python编写网页爬虫脚本并实现APScheduler调度
2014/07/28 Python
Python返回真假值(True or False)小技巧
2015/04/10 Python
Python动态赋值的陷阱知识点总结
2019/03/17 Python
python实现的发邮件功能示例
2019/09/11 Python
Python 元组拆包示例(Tuple Unpacking)
2019/12/24 Python
Python concurrent.futures模块使用实例
2019/12/24 Python
python打印异常信息的两种实现方式
2019/12/24 Python
Python如何基于smtplib发不同格式的邮件
2019/12/30 Python
Django添加bootstrap框架时无法加载静态文件的解决方式
2020/03/27 Python
k-means 聚类算法与Python实现代码
2020/06/01 Python
python 多进程和协程配合使用写入数据
2020/10/30 Python
Boston Proper官网:美国女装品牌
2017/10/30 全球购物
澳大利亚相机之家:Camera House
2017/11/30 全球购物
北京华建集团SQL面试题
2014/06/03 面试题
大学生毕业的自我评价分享
2014/01/02 职场文书
农业局学习党的群众路线教育实践活动心得体会
2014/03/07 职场文书
大学生社会实践自我鉴定
2014/03/24 职场文书
公司员工奖惩制度
2015/08/04 职场文书
彩虹社八名人气艺人全新周边限时推出,性转女装男装一次拥有!
2022/04/01 日漫