본문 바로가기
Python/Python FAQ

Python 파이썬에서 현재 시간을 밀리초 단위로 어떻게 얻을 수 있나요?, How do I get the current time in milliseconds in Python?

by 베타코드 2023. 7. 10.
반응형

질문


파이썬에서 현재 시간을 밀리초 단위로 어떻게 얻을 수 있을까요?


답변


time.time()을 사용하여:

import time

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

그런 다음:

>>> current_milli_time()
1378761833768
반응형

댓글