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
- 스칼라
- hyperledger fabric
- 파이썬
- 그라파나
- Golang
- 블록체인
- play2 강좌
- Actor
- 스위프트
- Hyperledger fabric gossip protocol
- 플레이프레임워크
- Akka
- Play2
- 주키퍼
- Play2 로 웹 개발
- 안드로이드 웹뷰
- 파이썬 데이터분석
- CORDA
- 이더리움
- 파이썬 머신러닝
- 엔터프라이즈 블록체인
- 파이썬 동시성
- 하이브리드앱
- 하이퍼레저 패브릭
- 파이썬 강좌
- 스칼라 동시성
- Adapter 패턴
- play 강좌
- akka 강좌
- 스칼라 강좌
Archives
- Today
- Total
목록파이썬 시간 (1)
HAMA 블로그
파이썬 시간 함수 (time, datetime) 예제
# coding=utf-8 import time import datetime# 2017-08-30 21:21:57.860000 def getCurrentTime(): return datetime.datetime.now() # 초를 문자열 시간으로 def getCurrentTimeBySec(s): m = s / 60 timestr = "2016-05-19 {}:{}".format(m / 60, m%60) print timestr return datetime.datetime.strptime(timestr, "%Y-%m-%d %H:%M") # 시간 차이를 문자열로 00:00:03 # tTime 은 datetime 타입이 들어간다. def getDiffTimeToTime(dtTime) : return getCu..
Python
2016. 11. 10. 21:22