Python 标准类库-日期类型之datetime模块

简介: Python 标准类库-日期类型之datetime模块

标准类库-日期类型datetime模块 

 


 

可用类型3

实践出真知4

timedelta对象4

class datetime.timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0)4

类属性5

实例属性(read-only):5

支持的操作6

实例方法6

1date对象7

class datetime.date(year, month, day)7

所有类方法(其它构造器)7

classmethod date.today()7

classmethod date.fromtimestamp(timestamp)7

类属性7

date.min7

date.max7

date.resolution8

实例属性(read-only)8

date.year8

date.month8

date.day8

支持操作8

实例方法9

date.replace(year, month, day)9

date.timetuple()9

date.toordinal()9

date.weekday()10

date.isoweekday()10

date.isocalendar()10

date.isoformat()10

date.ctime()10

date.strftime(format)11

date.__format__(format)11

2datetime对象11

class datetime.datetime(year, month, day, hour=0, minute=0, second=0, microsecond=0, tzinfo=None)11

所有类方法(其它构造器)11

classmethod datetime.today()11

classmethod datetime.now(tz=None)11

classmethod datetime.utcnow()12

classmethod datetime.fromtimestamp(timestamp, tz=None)12

classmethod datetime.utcfromtimestamp(timestamp)12

classmethod datetime.fromordinal(ordinal)12

classmethod datetime.combine(date, time)12

classmethod datetime.strptime(date_string, format)12

类属性13

datetime.min13

datetime.max13

datetime.resolution13

实例属性(read-only):13

datetime.year13

datetime.month13

datetime.day13

datetime.hour13

datetime.minute14

datetime.second14

datetime.microsecond14

datetime.tzinfo14

支持的操作14

实例方法15

datetime.date()15

datetime.time()15

datetime.timetz()15

datetime.replace([year[, month[, day[, hour[, minute[, second[, microsecond[, tzinfo]]]]]]]])15

datetime.timetuple()15

datetime.utctimetuple()15

datetime.toordinal()16

datetime.timestamp()16

datetime.weekday()16

datetime.isoweekday()16

datetime.isocalendar()16

datetime.isoformat(sep='T')16

datetime.__str__()17

datetime.ctime()17

datetime.strftime(format)17

datetime.__format__(format)17

3time对象17

class datetime.time(hour=0, minute=0, second=0, microsecond=0, tzinfo=None)17

类属性17

time.min18

time.max18

time.resolution18

实例属性(只读)18

time.hour18

time.minute18

time.second18

time.microsecond18

time.tzinfo18

实例方法18

time.replace([hour[, minute[, second[, microsecond[, tzinfo]]]]])18

time.isoformat()19

time.__str__()19

time.strftime(format)19

time.__format__(format)19

time.utcoffset()19

4format格式19

篇幅问题,采用网盘链接分享:

[优]标准类库-日期类型之datetime模块.pdf


 

目录
相关文章
|
2天前
|
Java 程序员 开发者
Python的gc模块
Python的gc模块
|
5天前
|
数据采集 Web App开发 JavaScript
python-selenium模块详解!!!
Selenium 是一个强大的自动化测试工具,支持 Python 调用浏览器进行网页抓取。本文介绍了 Selenium 的安装、基本使用、元素定位、高级操作等内容。主要内容包括:发送请求、加载网页、元素定位、处理 Cookie、无头浏览器设置、页面等待、窗口和 iframe 切换等。通过示例代码帮助读者快速掌握 Selenium 的核心功能。
32 5
|
6天前
|
Python
SciPy 教程 之 SciPy 模块列表 13
SciPy教程之SciPy模块列表13:单位类型。常量模块包含多种单位,如公制、二进制(字节)、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。示例代码展示了如何使用`constants`模块获取零摄氏度对应的开尔文值(273.15)和华氏度与摄氏度的转换系数(0.5556)。
11 1
|
4天前
|
Python
SciPy 教程 之 SciPy 模块列表 16
SciPy教程之SciPy模块列表16 - 单位类型。常量模块包含多种单位,如公制、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。示例代码展示了力学单位的使用,如牛顿、磅力和千克力等。
8 0
|
5天前
|
JavaScript Python
SciPy 教程 之 SciPy 模块列表 15
SciPy 教程之 SciPy 模块列表 15 - 功率单位。常量模块包含多种单位,如公制、质量、时间等。功率单位中,1 瓦特定义为 1 焦耳/秒,表示每秒转换或耗散的能量速率。示例代码展示了如何使用 `constants` 模块获取马力值(745.6998715822701)。
8 0
|
5天前
|
JavaScript Python
SciPy 教程 之 SciPy 模块列表 15
SciPy教程之SciPy模块列表15:单位类型。常量模块包含多种单位,如公制、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。功率单位以瓦特(W)表示,1W=1J/s。示例代码展示了如何使用`constants`模块获取马力(hp)的值,结果为745.6998715822701。
10 0
|
6天前
|
Python
SciPy 教程 之 SciPy 模块列表 13
SciPy 教程之 SciPy 模块列表 13 - 单位类型。常量模块包含多种单位:公制、二进制(字节)、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。示例:`constants.zero_Celsius` 返回 273.15 开尔文,`constants.degree_Fahrenheit` 返回 0.5555555555555556。
9 0
|
6月前
|
Python 人工智能 数据可视化
Python模块与包(八)
Python模块与包(八)
49 0
Python模块与包(八)
|
2月前
|
人工智能 数据可视化 搜索推荐
Python异常模块与包
Python异常模块与包
|
2月前
|
开发者 Python
30天拿下Python之模块和包
30天拿下Python之模块和包
16 2