>백엔드 개발 >파이썬 튜토리얼 >Python에서 현재 시간을 얻는 방법은 무엇입니까?

Python에서 현재 시간을 얻는 방법은 무엇입니까?

Susan Sarandon
Susan Sarandon원래의
2024-11-23 07:57:111049검색

How to Get the Current Time in Python?

Python에서 현재 시간을 가져오는 방법

Python에는 현재 시간을 가져오는 방법이 여러 가지가 있습니다. 한 가지 편리한 옵션은 datetime 모듈을 활용하는 것입니다.

datetime 사용

# Import the datetime module
import datetime

# Get the current datetime object
now = datetime.datetime.now()

# Print the datetime object
print(now)  # Output: datetime.datetime(2023, 3, 8, 14, 35, 22, 123456)

시계 시간 가져오기

날짜 없이 시계 시간만 얻으려면 다음을 사용할 수 있습니다.

# Get the current clock time
current_time = now.time()

# Print the clock time
print(current_time)  # Output: time(14, 35, 22, 123456)

가져오기 단순화

코드를 단순화하려면 datetime 모듈에서 직접 datetime 객체를 가져올 수 있습니다.

from datetime import datetime

# Get the current datetime object
now = datetime.now()

이 접근 방식을 사용하면 datetime을 사용할 필요가 없습니다. datetime 모듈 함수를 호출할 때 접두사를 사용하세요.

위 내용은 Python에서 현재 시간을 얻는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.