Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python에서 형식화된 시간 가져오기

<시간/>

요구 사항에 따라 언제든지 형식을 지정할 수 있지만 읽을 수 있는 형식으로 시간을 가져오는 간단한 방법은 asctime() −

#!/usr/bin/python
import time;
localtime = time.asctime( time.localtime(time.time()) )
print "Local current time :", localtime

출력

이것은 다음과 같은 결과를 낳을 것입니다 -

Local current time : Tue Jan 13 10:17:09 2009