これは日々の作業を通して学んだことや毎日の生活で気づいたことをを記録しておく備忘録である。
HTML ファイル生成日時: 2024/11/21 17:40:55.112 (台灣標準時)
Python で datetime モジュールを使って、現在の日時を得る方法は以下の通 り。
#!/usr/pkg/bin/python3.9 # importing datetime module import datetime # getting current date/time datetime_localtime = datetime.datetime.now () # printing current date/time print ("current time in local time:", datetime_localtime) # getting current date/time in UTC datetime_utc = datetime.datetime.now (datetime.timezone.utc) print ("current time in UTC: ", datetime_utc) # YYYY, MM, DD, hh, mm, ss YYYY = datetime_localtime.year MM = datetime_localtime.month DD = datetime_localtime.day hh = datetime_localtime.hour mm = datetime_localtime.minute ss = datetime_localtime.second + datetime_localtime.microsecond * 10**-6 print ("YYYY/MM/DD = %04d/%02d/%02d" % (YYYY, MM, DD) ) print ("hh:mm:ss = %02d:%02d:%09.6f" % (hh, mm, ss) )
実行してみると次のようになる。
% ./test_datetime_0.py current time in local time: 2021-02-04 13:59:15.191673 current time in UTC: 2021-02-04 05:59:15.191734+00:00 YYYY/MM/DD = 2021/02/04 hh:mm:ss = 13:59:15.191673