「Python」datetime()で日付オブジェクトを作成するサンプル
書式
datetime.isoformat(sep=’T’, timespec=’auto’)
日時を ISO 8601 書式で表した文字列で返します:
datetime.ctime()
日付および時刻を表す文字列を返します
使用例
import datetime cftA = datetime.datetime(2020, 5, 17) print("日付の設定") print(cftA) cftB = datetime.datetime(2021, 5, 18, 15, 17, 8, 132263).isoformat() print("日時をISO8601書式で表した文字列で返す結果") print(cftB) cftC = datetime.datetime(2021, 1, 1, 12, 30, 59, 0).ctime() print("日付および時刻を表す文字列を返す結果") print(cftC)
実行結果
日付の設定
2020-05-17 00:00:00
日時をISO8601書式で表した文字列で返す結果
2021-05-18T15:17:08.132263
日付および時刻を表す文字列を返す結果
Fri Jan 1 12:30:59 2021