-
現在の日付とタイムスタンプを取得する方法: 例えば、Pythonを使用して現在の日付とタイムスタンプを取得するには、次のコードを使用できます。
import datetime current_datetime = datetime.datetime.now() current_date = current_datetime.date() timestamp = current_datetime.timestamp() print("現在の日付:", current_date) print("タイムスタンプ:", timestamp)
-
特定の日付とタイムスタンプを設定する方法: もし特定の日付やタイムスタンプを設定したい場合には、以下のようなコードを使用できます。
import datetime # 特定の日付を設定 specific_date = datetime.date(2022, 5, 15) # 特定のタイムスタンプを設定 specific_timestamp = datetime.datetime(2022, 5, 15, 12, 30).timestamp() print("特定の日付:", specific_date) print("特定のタイムスタンプ:", specific_timestamp)
-
タイムスタンプから日付を抽出する方法: タイムスタンプから日付を抽出するには、次のようなコードを使用できます。
import datetime timestamp = 1644091200 # 例として、2022年2月6日のタイムスタンプを使用 date_from_timestamp = datetime.datetime.fromtimestamp(timestamp).date() print("日付:", date_from_timestamp)