Python datetime.__str__() 方法
datetime.__str__() 方法用於操作模塊 datetime 的 datetime 類的對象。
它使用日期時間類對象並返回對象的字符串表示形式。對於日期時間對象 d,str(d) 等效於 d.isoformat(' ')。 str() 是一個實例方法,因為它使用類的實例。
模塊:
import datetime
類:
from datetime import datetime
用法:
str()
參數:
- None
返回值:
此方法的返回類型是表示原始日期時間對象的字符串。
例:
## importing datetime class
from datetime import datetime
import pytz
## Creating an instance
x = datetime.now()
d = str(x)
print("Original object:",x)
print("Date String:", d)
print()
## str function also uses the ISO format
x = datetime(2020, 1, 27, 23, 12, 24, 4566)
print("Date string of date 2020/1/27 and time 23:12:24 :", str(x))
print()
x = datetime(200, 1, 2, 3, 12, 24, 4566)
timezone = pytz.timezone('Asia/Tokyo')
x = x.astimezone(timezone)
print("Date string of date 200/1/2 and time 3:12:24 with tzinfo present:", str(x))
print()
## str(x) is equivalent to x.isoformat() function
x = datetime(200,10,12)
print("Datetime 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-05-03 16:45:16.315525 Date String:2020-05-03 16:45:16.315525 Date string of date 2020/1/27 and time 23:12:24 :2020-01-27 23:12:24.004566 Date string of date 200/1/2 and time 3:12:24 with tzinfo present:0200-01-02 12:31:24.004566+09:19 Datetime in ISO 8601 format using isoformat() function:0200-10-12 00:00:00 Date string 200/10/12 using str() function:0200-10-12 00:00:00 True
相關用法
- Python datetime astimezone()用法及代碼示例
- Python datetime timetuple()用法及代碼示例
- Python datetime timetz()用法及代碼示例
- Python datetime isocalendar()用法及代碼示例
- Python datetime date()用法及代碼示例
- Python datetime isoformat()用法及代碼示例
- 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 __str__() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。