广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Python技术 > 正文

Python将时间戳转换为指定格式日期_惠州计算机Python软件开发

作者:黄君发布时间:2021-01-12分类:Python技术浏览:1022


导读:给定一个时间戳,将其转换为指定格式的时间。注意时区的设置。

给定一个时间戳,将其转换为指定格式的时间。

注意时区的设置。

当前时间

实例 1

import time 

  

# 获得当前时间时间戳

now = int(time.time())

#转换为其他日期格式,如:"%Y-%m-%d %H:%M:%S"

timeArray = time.localtime(now)

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

print(otherStyleTime)


执行以上代码输出结果为:

2019-05-21 18:02:49


实例 2

import datetime 

  

# 获得当前时间

now = datetime.datetime.now()

# 转换为指定的格式

otherStyleTime = now.strftime("%Y-%m-%d %H:%M:%S")

print(otherStyleTime)


执行以上代码输出结果为:

2019-05-21 18:03:48

指定时间戳


实例 3

import time 

  

timeStamp = 1557502800

timeArray = time.localtime(timeStamp)

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

print(otherStyleTime)


执行以上代码输出结果为:

2019-05-10 23:40:00


实例 4

import datetime 

  

timeStamp = 1557502800

dateArray = datetime.datetime.utcfromtimestamp(timeStamp)

otherStyleTime = dateArray.strftime("%Y-%m-%d %H:%M:%S")

print(otherStyleTime)


执行以上代码输出结果为:

2019-05-10 23:40:00


点击咨询直接了解更多相关资料,我在惠州北大青鸟新方舟等你。

343.jpg

标签:惠州计算机软件培训惠州计算件软件开发惠州计算机软件基础惠州计算机Python软件开发惠州Python培训


Python技术排行
标签列表
网站分类
文章归档
最近发表