LoginSignup
0
0

More than 3 years have passed since last update.

python datetimeで「現在の日付のみ」と「現在の日時」を取り出す。

Posted at

結論

結論
#現在の日付
date1 = datetime.date.today()
print(date1)

#現在の日付と日時
date2 = datetime.datetime.now()
print(date2)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0