作者:渤海科技城 | 来源:互联网 | 2024-10-21 23:14
这期内容当中小编将会给大家带来有关怎么在python中操作时间日期,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
python可以做什么
Python是一种编程语言,内置了许多有效的工具,Python几乎无所不能,该语言通俗易懂、容易入门、功能强大,在许多领域中都有广泛的应用,例如最热门的大数据分析,人工智能,Web开发等。
具体如下:
#coding=utf-8
import time
import datetime
if __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"))
运行结果:
2020-02-06 11:33:51
2020-2-6 11:33:51
2020-02-06 11:33:51
2020-02-05 11:33:51
2020-02-05 11:33:51
2020-02-07 11:33:51
2020-02-07 11:33:51
2020-02-06 10:33:51
2020-02-06 10:33:51
1580960031
1580960031893
2017-10-10 18:20:54
2017-10-10 18:20:54
2020-02-06 11:33:51
1507564800.0
1507601410.0
上述就是小编为大家分享的怎么在python中操作时间日期了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注编程笔记行业资讯频道。