일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Tkinter
- PostgreSQL
- SQL
- Apache
- c#
- 파이썬
- Python
- PANDAS
- hive
- Google Spreadsheet
- math
- dataframe
- numpy
- matplotlib
- Github
- google apps script
- Mac
- GIT
- Java
- string
- list
- Google Excel
- Excel
- Kotlin
- django
- gas
- PySpark
- array
- Redshift
- Today
- Total
목록Datetime (11)
달나라 노트
datetime class의 timedelta method는 특정한 시간의 양을 저장하며 이를 이용하여 어떤 시점으로부터 얼마만큼의 시간이 양이 차이났을 때 과연 어느 시점으로 변할지를 계산합니다. 아래 예시를 봅시다. import datetime d1 = datetime.date(year = 2020, month = 1, day = 1) d2 = datetime.date(year = 2020, month = 1, day = 10) d3 = d2 - d1 print(d3) d4 = datetime.datetime(2020, 1, 1, 0, 10, 20) d5 = datetime.datetime(2020, 1, 10, 10, 10, 20) d6 = d5 - d4 print(d6) print(type(d3)..
import datetime current_dt = datetime.datetime.now() print(current_dt) - Result 2020-03-08 02:13:52.703621 datetime 모듈의 class중에서 datetime이라는 class가 존재합니다. datetime class에 속한 now라는 moethod는 현재 local date와 time을 리턴합니다. import datetime current_dt = datetime.date.today() print(current_dt) - Result 2020-03-08 datetime 모듈의 class중에서 date라는 class가 존재합니다. date class에 속한 today라는 moethod는 현재 local date를 리턴..
import datetime a = datetime.datetime(12, 34, 56, 12, 34, 56, 123456) b = datetime.datetime(12, 34, 56) print(a) print(b) - Result 2020-03-08 12:34:56.123456 2020-03-08 00:00:00 datetime module에는 datetime이라는 class가 존재합니다. datetime method는 datetime class의 생성자(Constructor)이며 년, 월, 일, 시, 분, 초, 마이크로초의 7개 인자를 받으며 이 중 년, 월, 일은 필수 인자입니다. 만약 입력되지 않은 인자는 모두 0으로 인식되는 것을 위 예시의 b에서 볼 수 있습니다. import datetime..
import datetime a = datetime.time() print(a) b = datetime.time(12, 34, 56) print(b) c = datetime.time(hour = 12, minute = 34, second = 56,) print(c) d = datetime.time(12, 34, 56, 123456) print(d) - Result 00:00:00 12:34:56 12:34:56 12:34:56.123456 datetime module에는 time이라는 class가 존재합니다. time method는 time class의 생성자(Constructor)이며 시간, 분, 초의 세 가지 parameter를 기본적으로 받고, 거기에 추가로 d처럼 1초 미만의 소수점 초까지 par..