"Timezone"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(다른 사용자 한 명의 중간 판 3개는 보이지 않습니다)
1번째 줄: 1번째 줄:
[[분류: 시간대]]


==Python==
==Python==
[[category: Python]]
[[category: Python]]
<source lang='Python'>
<syntaxhighlight lang='Python'>
import time
import time
print( time.timezone )
print( time.timezone )
8번째 줄: 9번째 줄:
print( time.timezone / 3600 )
print( time.timezone / 3600 )
# -9.0
# -9.0
print( time.strftime('%z', time.localtime()) )
print( time.strftime('%z') )
# 대한민국 표준시
# 대한민국 표준시
</source>
</syntaxhighlight>
 
==같이 보기==
*[[now]]

2020년 11월 2일 (월) 02:31 기준 최신판


1 Python[ | ]

import time
print( time.timezone )
# -32400
print( time.timezone / 3600 )
# -9.0
print( time.strftime('%z') )
# 대한민국 표준시

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}