Python date.__str__() 方法
date.__str__() 方法用于操作模块 datetime 的日期类对象。
它使用日期类对象并返回对象的字符串表示形式。对于日期对象d
,str(d)
相当于d.isoformat()
。str()
是一个实例方法,因为它使用类的实例。
模块:
import datetime
类:
from datetime import date
用法:
str()
返回值:
此方法的返回类型是表示原始日期的字符串。
例:
## importing date class
from datetime import date
## Creating an instance
x = date.today()
d = str(x)
print("Original object:",x)
print("Date String:", d)
print()
## str function also uses the ISO format
x = date(2020,10,1)
print("Date string of date 2020/10/1:", str(x))
print()
## str(x) is equivalent to x.isoformat() function
x = date(200,10,12)
print("Date 200/10/12 in ISO 8601 format using isoformat() function:", x.isoformat())
print("Date string 200/10/12 using str() function:", str(x))
print( x.isoformat() == str(x))
输出
Original object:2020-04-29 Date String:2020-04-29 Date string of date 2020/10/1:2020-10-01 Date 200/10/12 in ISO 8601 format using isoformat() function:0200-10-12 Date string 200/10/12 using str() function:0200-10-12 True
相关用法
- Python date toordinal()用法及代码示例
- Python date replace()用法及代码示例
- Python date strftime()用法及代码示例
- Python date weekday()用法及代码示例
- Python date isoweekday()用法及代码示例
- Python date isocalendar()用法及代码示例
- Python date timetuple()用法及代码示例
- Python date isoformat()用法及代码示例
- Python datetime astimezone()用法及代码示例
- Python datetime timetuple()用法及代码示例
- Python datetime timetz()用法及代码示例
- Python datetime isocalendar()用法及代码示例
- Python datetime date()用法及代码示例
- Python datetime isoformat()用法及代码示例
- Python datetime __str__()用法及代码示例
- Python datetime.timedelta()用法及代码示例
- Python datetime.tzinfo()用法及代码示例
- Python datetime time()用法及代码示例
- Python datetime utcoffset()用法及代码示例
- Python datetime weekday()用法及代码示例
注:本文由纯净天空筛选整理自 Python date __str__() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。