copipe Python | 現在の秒を取得する。

概要

datetime.datetime.now().secondを使って、現在時刻の"秒"を取得することができる。

コード

import datetime
sec = datetime.datetime.now().second
print(sec)

結果

12