1. ホーム
  2. python

[解決済み] Pythonでミリ秒単位で現在時刻を取得する?

2022-03-15 06:58:05

質問

Pythonで現在時刻をミリ秒単位で取得するには?

どのように解決するのですか?

使用方法 time.time() :

import time

def current_milli_time():
    return round(time.time() * 1000)

次に

>>> current_milli_time()
1378761833768