「Python3」time.time()で現在時刻のUNIX時間を取得するサンプル

2020年12月6日

構文
time.time()
エポック からの秒数を浮動小数点数で返します。
エポックの具体的な日付とうるう秒 (leap seconds) の扱いはプラットフォーム依存で
サンプルコード

#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
import time  # timeモジュールのインポート
 
cft = time.time()
print ("現在のUNIX時間UNIX時間:",cft)

実行結果
>python 101.py
現在のUNIX時間UNIX時間: 1607238569.5875053

Python

Posted by arkgame