在Python中,我们可以使用日期构造函数来实例化日期对象。日期对象代表当前公历中的date(year, month, day)
。
例子
创建日期对象
日期对象的构造函数是date(year, month, day)
:
from datetime import date
d = date(2020,4,3)
print(d)
2020-04-03
从日期字符串获取日期
Python 的 date.fromisoformat(~)
方法将 YYYY-MM-DD
格式的日期字符串转换为日期对象。
from datetime import date
date = date.fromisoformat('2020-05-20')
print(date)
print(type(date))
2020-05-20
<class 'datetime.date'>
我们可以看到字符串'2020-05-20'
现在已转换为日期对象。
相关用法
- Python Datetime Datetime构造函数用法及代码示例
- Python Datetime today方法用法及代码示例
- Python Datetime utcnow方法用法及代码示例
- Python Datetime fromisoformat方法用法及代码示例
- Python Datetime strftime方法用法及代码示例
- Python Datetime Time构造函数用法及代码示例
- Python Datetime strptime方法用法及代码示例
- Python Datetime Timedelta构造函数用法及代码示例
- Python Datetime utcfromtimestamp方法用法及代码示例
- Python Datetime now方法用法及代码示例
- Python Datetime fromtimestamp方法用法及代码示例
- Python Datetime.replace()用法及代码示例
- Python Pandas DatetimeIndex构造函数用法及代码示例
- Python Django DateDetailView用法及代码示例
- Python DateTime转integer用法及代码示例
- Python DateTime astimezone()用法及代码示例
- Python Django DateTimeField.input_formats用法及代码示例
- Python DateTime weekday()用法及代码示例
- Python Pandas DataFrame empty属性用法及代码示例
- Python Pandas DataFrame pop方法用法及代码示例
- Python Pandas DataFrame nsmallest方法用法及代码示例
- Python Django DataSource用法及代码示例
- Python Pandas DataFrame sample方法用法及代码示例
- Python Pandas DataFrame items方法用法及代码示例
- Python Pandas DataFrame max方法用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python Datetime | Date constructor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。