Python 日付/時刻の取得

Pythonで日付/時刻の取得をする方法です。

# -*- coding: Shift_JIS -*
import datetime

print ("日付の取得")
print (datetime.date.today())
print (datetime.date.today().year)
print (datetime.date.today().month)
print (datetime.date.today().day)

print ("日付/時刻の取得")
print (datetime.datetime.today())
print (datetime.datetime.today().hour)
print (datetime.datetime.today().minute)
print (datetime.datetime.today().second)
print (datetime.datetime.today().microsecond)

1


Bookmark this on Yahoo Bookmark
Bookmark this on Google Bookmarks
Share on LinkedIn
LINEで送る
Pocket

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

次のHTML タグと属性が使えます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>