博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python日期,时间函数
阅读量:5104 次
发布时间:2019-06-13

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

获取当前格式化时间:

now_time = time.strftime("%Y-%m-%d %H:%M:%S",time.localtime())

 

获取当前时间戳:

now_timestamp = int(time.time())
格式更改:先转换为时间数组
a = "2013-10-10 23:40:00",
timeArray = time.strptime(a, "%Y-%m-%d %H:%M:%S")
timestamp = int(time.mktime(timeArray))
otherStyleTime = time.strftime("%Y/%m/%d %H:%M:%S", timeArray)
otherStyleTime = "2013/10/10 23:40:00"

转载于:https://www.cnblogs.com/BigFishFly/p/6337193.html

你可能感兴趣的文章
第一个Java Web程序
查看>>
Atomic
查看>>
div 显示滚动条与div显示隐藏的CSS代码
查看>>
Redis-1-安装
查看>>
Access denied for user ''@'localhost' to database 'mysql'
查看>>
微信公众号里面使用地图导航
查看>>
部署支持 https 的 Nginx 服务
查看>>
‘Cordova/CDVPlugin.h’ file not found
查看>>
WebAssembly是什么?
查看>>
C# 实现自动化打开和关闭可执行文件(或 关闭停止与系统交互的可执行文件)...
查看>>
20151214--JSTL
查看>>
树状数组_一维
查看>>
【拓扑排序】【最短路】【最小生成树】Day 9.2
查看>>
Kubernetes 第三章 kubeadm
查看>>
C#/Asp.Net 获取各种Url的方法
查看>>
安装php源码包内的扩展
查看>>
uglify2之transform
查看>>
error C2259: 'CException' : cannot instantiate abstract class
查看>>
设计模式 单例模式的缺陷和补救办法及应用场景2
查看>>
UVA11722 Joining with Friend
查看>>