반응형
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
- Mac
- PostgreSQL
- list
- c#
- 파이썬
- google apps script
- matplotlib
- Java
- PySpark
- array
- dataframe
- Apache
- django
- Excel
- numpy
- Python
- Google Spreadsheet
- SQL
- Google Excel
- Kotlin
- Github
- GIT
- Redshift
- PANDAS
- string
- Tkinter
- math
- gas
- hive
Archives
- Today
- Total
달나라 노트
Python calendar : weekday (특정 날짜의 요일을 숫자로 반환) 본문
Python/Python calendar
Python calendar : weekday (특정 날짜의 요일을 숫자로 반환)
CosmosProject 2020. 12. 23. 02:30728x90
반응형
import calendar
print(calendar.weekday(2020, 3, 10))
- Output
1
calendar.weekday 함수를 2020년 3월 10일의 요일 정보를 추출합니다.
각 요일별 index 번호는 아래와 같습니다.
월요일 = 0
화요일 = 1
수요일 = 2
목요일 = 3
금요일 = 4
토요일 = 5
일요일 = 6
728x90
반응형
'Python > Python calendar' 카테고리의 다른 글
Python calendar : day_name (요일, 요일 list, 요일 목록, weekday) (0) | 2022.03.17 |
---|---|
Python calendar : monthrange (특정 월의 시작 요일과 해당 월의 총 일수) (0) | 2020.12.23 |
Python calendar : prmonth (특정 년도 + 특정 월의 달력 추출) (0) | 2020.12.23 |
Python calendar : calendar (특정 년도의 달력 보기) (0) | 2020.12.23 |
Comments