Python时间,日期,时间戳之间转换,时间转换时间戳,Python时间戳转换时间,Python时间转换时间戳

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#1.将字符串的时间转换为时间戳方法:
a = "2013-10-10 23:40:00"
#将其转换为时间数组
import time
 
timeArray = time.strptime(a, "%Y-%m-%d %H:%M:%S")
# 转换为时间戳:
timeStamp = int(time.mktime(timeArray))
timeStamp == 1381419600<br>#一行代码的写法是<br>timeStamp = int(time.mktime(time.strptime(a, "%Y-%m-%d %H:%M:%S")))# 字符串格式更改如a = "2013-10-10 23:40:00", 想改为a = "2013/10/10 23:40:00"
# 方法:先转换为时间数组, 然后转换为其他格式
timeArray = time.strptime(a, "%Y-%m-%d %H:%M:%S")
otherStyleTime = time.strftime("%Y/%m/%d %H:%M:%S", timeArray)
 
# 3.时间戳转换为指定格式日期:
# 方法一:利用localtime()转换为时间数组, 然后格式化为需要的格式, 如
timeStamp = 1381419600
timeArray = time.localtime(timeStamp)
otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
# otherStyletime == "2013-10-10 23:40:00"<br>#一行代码的写法otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S",time.localtime(timeStamp))# 方法二:
import datetime
timeStamp = 1381419600
dateArray = datetime.datetime.utcfromtimestamp(timeStamp)
otherStyleTime = dateArray.strftime("%Y-%m-%d %H:%M:%S")
# otherStyletime == "2013-10-10 23:40:00"
 
# 4.获取当前时间并转换为指定日期格式
# 方法一:
import time
 
# 获得当前时间时间戳
now = int(time.time())  #这是时间戳转换为其他日期格式, 如:"%Y-%m-%d %H:%M:%S"
timeArray = time.localtime(timeStamp)
otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
 
# 方法二:
import datetime
 
# 获得当前时间
now = datetime.datetime.now()  #这是时间数组格式转换为指定的格式:
otherStyleTime = now.strftime("%Y-%m-%d %H:%M:%S")
 
# 5. 获得三天前的时间
# 方法:
import time
import datetime
 
# 先获得时间数组格式的日期
threeDayAgo = (datetime.datetime.now() - datetime.timedelta(days=3))
# 转换为时间戳:
timeStamp = int(time.mktime(threeDayAgo.timetuple()))
# 转换为其他字符串格式:
otherStyleTime = threeDayAgo.strftime("%Y-%m-%d %H:%M:%S")
# 注:timedelta()的参数有:days, hours, seconds, microseconds
 
# 6.给定时间戳, 计算该时间的几天前时间:
timeStamp = 1381419600
# 先转换为datetime
import datetime
import time
 
dateArray = datetime.datetime.utcfromtimestamp(timeStamp)
threeDayAgo = dateArray - datetime.timedelta(days=3)

  注意事项: 1.Python的时间戳长度是10个数字,Java的长度是13个数字。我们在做时间戳转换的时候可以 乘以一千或者除以一千

        2. Python 中的 %Y-%m-%d %H:%M:%S 可以根据自己的需要进行修改

1
 

本文链接:http://www.cnblogs.com/xuchunlin/p/6946666.html 

posted @   淋哥  阅读(6030)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 提示词工程——AI应用必不可少的技术
点击右上角即可分享
微信分享提示