博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python时间日期方法汇总
阅读量:5810 次
发布时间:2019-06-18

本文共 1345 字,大约阅读时间需要 4 分钟。

hot3.png

#coding=utf-8import timeimport datetimeif __name__ == "__main__":	# 今天	now = datetime.datetime.now()	print now.strftime('%Y-%m-%d %H:%M:%S')	print "%s-%s-%s %s:%s:%s" % (now.year, now.month, now.day, now.hour, now.minute, now.second)	print time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())	# 前一天	now = datetime.datetime.now()	dt = now + datetime.timedelta(days=-1)	print dt.strftime('%Y-%m-%d %H:%M:%S')	print time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time() - 24 * 3600))	# 后一天	now = datetime.datetime.now()	dt = now + datetime.timedelta(days=1)	print dt.strftime('%Y-%m-%d %H:%M:%S')	print time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time() + 24 * 3600))	# 前一小时	now = datetime.datetime.now()	dt = now - datetime.timedelta(hours=1)	print dt.strftime("%Y-%m-%d %H:%M:%S")	print time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time() - 1 * 3600))	# 时间戳 秒	print int(time.time())	# 时间戳 毫秒	print int(round(time.time() * 1000))	# 时间戳 to 日期	print datetime.datetime.fromtimestamp(1507630854)	print time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(1507630854))	print time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())	# 日期 to 时间戳	print time.mktime(time.strptime("2017-10-10", "%Y-%m-%d"))	print time.mktime(time.strptime("2017-10-10 10:10:10", "%Y-%m-%d %H:%M:%S"))

 

转载于:https://my.oschina.net/qiongtaoli/blog/1548739

你可能感兴趣的文章
c#代码启动任务管理器的几种方法
查看>>
thinkphp-volist4
查看>>
android特效集合
查看>>
linux命令解析-ls
查看>>
遇到ORA-01940: cannot drop a user that is currently
查看>>
myeclipse常用快捷键
查看>>
python 字符串
查看>>
java-第四章-实现幸运抽奖功能
查看>>
使用sitemesh建立复合视图 - 1.hello
查看>>
在Linux下安装fcitx五笔
查看>>
editplus和ultraedit使用技巧
查看>>
KVM---GUI远程维护管理
查看>>
四大Java EE容器(Tomcat、JBoss、Resin、Glassfish)之简单比较
查看>>
loadrunner出错汇总
查看>>
expdp和impdp常用参数
查看>>
Redhat7.2配置免费yum源(简单五步轻松搞定)
查看>>
第十三单元练习题
查看>>
人工智能+娱乐,看英伟达如何用AI改变传统影像制作
查看>>
Tomcat系统加固规范
查看>>
JAVA与Tomcat(续二)
查看>>