일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- gas
- Mac
- Python
- list
- Google Excel
- matplotlib
- Tkinter
- Google Spreadsheet
- array
- string
- 파이썬
- hive
- math
- Java
- Excel
- Kotlin
- PySpark
- django
- PANDAS
- numpy
- PostgreSQL
- c#
- GIT
- Github
- SQL
- dataframe
- google apps script
- Redshift
- Apache
- Today
- Total
목록Datetime (11)
달나라 노트
Python의 datetime library에는 utcnow라는 method가 있는데 이것은 현재 기준 UTC를 반환해줍니다. import datetime dt_utc = datetime.datetime.utcnow() print(dt_utc) -- Result 2021-10-27 17:08:51.097881 사용법은 상당히 간단합니다. utcnow() method만으로 UTC를 얻을 수 있습니다. utcnow()는 Python코드를 실행하는 서버나 컴퓨터의 시간에 상관없이 UTC값을 기준으로 계산되는 것이므로, 혹시나 컴퓨터의 시간이 이상하다거나 사용하는 서버의 시간이 이상할 경우 정확한 현재 시간/날짜를 얻기 위해 사용할 수 있습니다. import datetime dt_kst = datetime.da..
import datetime print(datetime.datetime.now()) print(datetime.datetime.now().weekday()) print(datetime.datetime.now().isoweekday()) -- Result 2021-03-27 01:27:32.470639 5 6 datetime 자료형에 weekday, isoweekday method를 적용시켜 요일 번호를 받아낼 수 있습니다. 각 method 별로 각 번호가 무슨 요일을 해당하는지는 아래 표를 보시면 됩니다. weekday isoweekday Mon 0 1 Tue 1 2 Wed 2 3 Thu 3 4 Fri 4 5 Sat 5 6 Sun 6 7
import datetime dt = datetime.date(2020, 12, 25) print(dt) iso_data = dt.isocalendar() print(iso_data) print(iso_data[0]) # year print(iso_data[1]) # week number print(iso_data[2]) # week day number - Result 2020-12-25 (2020, 52, 5) 2020 52 5 isocalendar는 date or datetime에 대해 해당 날짜의 년도, 주차(week number), 요일(week day)을 포함한 Tuple 데이터를 반환합니다. 따라서 return된 Tuple의 index = 1인 숫자를 보면 week number를 얻을 수 있습..
2020-03-08이라는 날짜를 표현하는 방식은 다양합니다. 2020-03-08이라고 표현할 수도 있으며 2020/03/08, 03/08/2020, 03-08-2020, 08-03-2020 등등 여러 구분기호(-, / etc)와 년, 월, 일의 순서를 변경할 수도 있습니다. 이번 section에서는 이와 같이 날짜, 시간 데이터를 원하는 format에 맞춰 텍스트로 전환하는 방법을 알아보겠습니다. import datetime now = datetime.datetime.now() print(now) t0 = now.strftime("&H:%M:%S") print(t0) t1 = now.strftime("&H-%M-%S") print(t1) t2 = now.strftime("%m/%d/%Y, %H:%M:%S..