반응형
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 | 31 |
Tags
- PySpark
- string
- SQL
- PANDAS
- hive
- numpy
- GIT
- gas
- Mac
- Google Excel
- list
- math
- Kotlin
- Google Spreadsheet
- google apps script
- Apache
- Java
- matplotlib
- django
- c#
- Excel
- 파이썬
- PostgreSQL
- array
- Github
- Tkinter
- dataframe
- Python
- Redshift
Archives
- Today
- Total
달나라 노트
Python datetime : weekday, isoweekday (week day number 요일번호 추출) 본문
Python/Python datetime
Python datetime : weekday, isoweekday (week day number 요일번호 추출)
CosmosProject 2021. 3. 27. 01:30728x90
반응형
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 |
728x90
반응형
'Python > Python datetime' 카테고리의 다른 글
Python datetime : utcnow (UTC.Python UTC, 시스템 시간 상관없이 UTC 추출하기. 협정 세계 표준시.) (0) | 2021.10.28 |
---|---|
Python datetime : isocalendar, strftime('%U'), strftime('%W') (week number 추출) (0) | 2020.12.23 |
Python datetime : strftime(시간 날짜 데이터를 텍스트로) & strptime(텍스트를 시간 날짜 데이터로) (0) | 2020.12.23 |
Python datetime : timedelta(시간 또는 날짜의 차이) (0) | 2020.12.23 |
Python datetime : now(현재 날짜와 시간) & today(현재 날짜) (0) | 2020.12.23 |
Comments