Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Sqoop
- hadoop
- xPlatform
- tomcat
- JavaScript
- table
- Spring
- Kotlin
- es6
- Android
- NPM
- mybatis
- SPC
- window
- 공정능력
- vaadin
- SQL
- Eclipse
- GIT
- Express
- SSL
- Python
- mapreduce
- R
- 보조정렬
- Java
- react
- IntelliJ
- plugin
- MSSQL
Archives
- Today
- Total
DBILITY
python deal with time ( 시간 다루기 ) 본문
반응형
python공식사이트를 참고하고, 다른 언어를 사용하는 경우엔 대충 자동완성을 사용하면 알 수 있음.
import time
import datetime
print(time.time())
# 1629171779.0626843
print(time.ctime(time.time()))
#Tue Aug 17 12:42:59 2021
print(time.localtime())
#time.struct_time(tm_year=2021, tm_mon=8, tm_mday=17, tm_hour=12, tm_min=42, tm_sec=59, tm_wday=1, tm_yday=229, tm_isdst=0)
print(time.localtime().tm_yday)
#229
print(time.localtime().tm_year)
#2021
print(time.strftime('%Y년 %m월 %d일 %H시:%M분:%S초', time.localtime()))
#2021년 08월 17일 12시:42분:59초
print(datetime.datetime.now())
#2021-08-17 12:42:59.062684
print(datetime.datetime(2021,8,17,12,42,59))
#2021-08-17 12:42:59
반응형
'python' 카테고리의 다른 글
python file rename, copy etc. (0) | 2021.08.19 |
---|---|
python multi-threading ( 멀티쓰레드 ) (0) | 2021.08.17 |
python string placeholder? formatting (0) | 2021.08.17 |
python lottery number generation exercise ( 로또 번호 생성) (0) | 2021.08.13 |
python html parse and image file save (0) | 2021.08.13 |
Comments