Python에는 현재 시간을 가져오는 방법이 여러 가지가 있습니다. 한 가지 편리한 옵션은 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!