美文网首页
python -- 日期

python -- 日期

作者: b485c88ab697 | 来源:发表于2017-09-04 23:07 被阅读10次

日期和时间-time

时间转换

import time
import datetime
datetime1 = datetime.datetime.now()
print(datetime1)
print(time.mktime(datetime1.timetuple()))
>>>2017-08-25 22:28:57.698020
>>>1503671337.0

datetime转为字符串:先获取timetuple然后再使用strftime转换

print(time.strftime("%Y-%m-%d %H:%M:%S",datetime1.timetuple()))
>>>2017-08-25 22:30:24

时间戳转字符串:先转为datetimetuple然后再转为字符串

datetimetuple=datetime.datetime.fromtimestamp(time.time()).timetuple()
print(time.strftime("%Y-%m-%d %H:%M:%S",datetimetuple))
>>>2017-08-25 22:31:40

字符串转时间戳:先转为datetimetuple再转为时间戳

datetimetuple=time.strptime("2017-7-26 23:40:00","%Y-%m-%d %H:%M:%S")
time.mktime(datetimetuple)
>>>1501083600.0

时间格式更改 1、先转换为时间数组 2、然后转换为其他格式

a="2017-7-26 23:40:00"
timetuple=time.strptime(a, "%Y-%m-%d %H:%M:%S")
time.strftime("%Y/%m/%d %H:%M:%S", timetuple)
>>>2017/07/26 23:40:00

获取当前时间的简单方式:但是没有datetime的强大,不能依据这个来获取昨天或者明天的数据。

print(time.strftime("%Y/%m/%d %H:%M:%S"))
print(time.ctime())
>>>2017/08/25 22:34:41
>>>Fri Aug 25 22:34:41 2017

python的日期和时间的操作主要是 datetime 和 time 标准库模块。

初始化datetime对象:首先import datetime

1、获取当天时间/日期

2、n天前/后的时间

3、通过时间戳获取

4、直接定义

5、通过字符串构建

#1
datetimenow=datetime.datetime.today()
datenow=datetime.date.today()
#2
yesterday=datetimenow-datetime.timedelta(days=1) # timedelta 时间操作对象
tomorrow=datetimenow+datetime.timedelta(days=1)
#3
datetime.datetime.fromtimestamp(time.time())
#4
datetime.datetime(year=2017,month=7,day=26,hour=23,minute=15,second=10)
#5
datetime.datetime.strptime("2017-7-26 23:40:00","%Y-%m-%d %H:%M:%S")

相关文章

  • python -- 日期

    日期和时间-time 时间转换 datetime转为字符串:先获取timetuple然后再使用strftime转换...

  • python 日期

    datime.date

  • Python-- 时间和日期

    Python 时间+日期

  • python日期函数udf-程序分享

    基于python函数的udf日期处理函数 1、基于最近在学习python,就是试试用python进行一下的日期处理...

  • Python Day32

    python大大的图 python使用datetime模块timedelta实现日期时间相加 计算明天的日期 把l...

  • python

    参考 python 日期 whoosh pdf python mysql中查询数据,结果中文显示乱码 Python...

  • Python标准库之time和datetime

    1、python3日期和时间 Python 程序能用很多方式处理日期和时间,转换日期格式是一个常见的功能。 Pyt...

  • Python datetime函数常见用法总结

    Python datetime使用指导:操作时间、日期和时间区间 在 Python 中处理日期和时间是一个很麻烦的...

  • python日期处理

    #1、返回昨天日期 def getYesterday(): today=datetime.date.today()...

  • Python日期解析

    问题描述:提供一个日期 (周日)---例 20190519 ,获取 解决:

网友评论

      本文标题:python -- 日期

      本文链接:https://www.haomeiwen.com/subject/keuyjxtx.html