「Python」datetime.now()で現在日時を取得する方法
書式
datetime.datetime.now()
現在日時のdatetimeオブジェクトを取得する
使用例
import datetime cftA = datetime.datetime.now() print("現在時刻: ") print(cftA)
実行結果
現在時刻:
2021-03-24 04:22:51.521247
Coding Changes the World
書式
datetime.datetime.now()
現在日時のdatetimeオブジェクトを取得する
使用例
import datetime cftA = datetime.datetime.now() print("現在時刻: ") print(cftA)
実行結果
現在時刻:
2021-03-24 04:22:51.521247