Python datetime.date() 方法
datetime.date() 方法用于操作模块 datetime 的 datetime 类的对象。
它使用实例方法将其转换为具有相同年月日的日期对象。我们需要一个 datetime 类的实例,因为它是一个实例方法。
模块:
import datetime
类:
from datetime import datetime
用法:
date()
参数:
- None
返回值:
该方法的返回类型是一个日期对象,其年月日值与给定的日期时间对象相同。
例:
## Creating a date object from a datetime object
from datetime import datetime
## Creating datetime instance
x = datetime(2020, 3, 4,23,12,23,44)
d = x.date()
print("Original object:", x)
print("New date object:",d)
print()
x = datetime.now()
d = x.date()
print("Original date and time", x)
print("New date objec:", d)
print()
x = datetime.today()
d = x.date()
print("Printing the same")
print(x)
print(d)
输出
Original object:2020-03-04 23:12:23.000044 New date object:2020-03-04 Original date and time 2020-05-03 17:08:13.516192 New date objec:2020-05-03 Printing the same 2020-05-03 17:08:13.517060 2020-05-03
相关用法
- Python datetime astimezone()用法及代码示例
- Python datetime timetuple()用法及代码示例
- Python datetime timetz()用法及代码示例
- Python datetime isocalendar()用法及代码示例
- Python datetime isoformat()用法及代码示例
- Python datetime __str__()用法及代码示例
- Python datetime time()用法及代码示例
- Python datetime utcoffset()用法及代码示例
- Python datetime weekday()用法及代码示例
- Python datetime tzname()用法及代码示例
- Python datetime replace()用法及代码示例
- Python datetime strftime()用法及代码示例
- Python datetime toordinal()用法及代码示例
- Python datetime isoweekday()用法及代码示例
- Python datetime.timedelta()用法及代码示例
- Python datetime.tzinfo()用法及代码示例
- Python date toordinal()用法及代码示例
- Python date replace()用法及代码示例
- Python date strftime()用法及代码示例
- Python date weekday()用法及代码示例
注:本文由纯净天空筛选整理自 Python datetime date() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。