일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- PostgreSQL
- PySpark
- Github
- array
- numpy
- hive
- 파이썬
- list
- Redshift
- google apps script
- Apache
- SQL
- matplotlib
- Tkinter
- math
- Excel
- GIT
- django
- dataframe
- PANDAS
- Java
- Google Spreadsheet
- Google Excel
- Python
- Kotlin
- gas
- Mac
- c#
- string
- Today
- Total
목록Python/Python calendar (5)
달나라 노트
calendar library의 day_name은 요일 정보를 return해줍니다. import calendar as c print(c.day_name) print(list(c.day_name)) -- Result ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'] day_name 자체는 요일을 담은 객체이며, 이것을 list로 변환하면 월요일부터 일요일까지의 요일 이름이 return되는 것을 볼 수 있습니다. import calendar as c import datetime print(datetime.datetime.now()) print(c.day_name[datetime.datetime.now().weekday..
import calendar print(calendar.monthrange(2020, 3)) - Output (6, 31) calendar.monthrange 함수는 2020년 3월의 시작일 즉, 2020년 3월 1일의 요일과 2020년 3월이 최대 몇일까지 있는지를 Tuple의 형태로반환합니다. 2020년 3월 1일은 6(일요일)이며, 2020년 3월은 31일까지 존재한다는 결과가 반환된 것을 볼 수 있습니다. 각 요일별 index 번호는 아래와 같습니다. 월요일 = 0 화요일 = 1 수요일 = 2 목요일 = 3 금요일 = 4 토요일 = 5 일요일 = 6
import calendar print(calendar.weekday(2020, 3, 10)) - Output 1 calendar.weekday 함수를 2020년 3월 10일의 요일 정보를 추출합니다. 각 요일별 index 번호는 아래와 같습니다. 월요일 = 0 화요일 = 1 수요일 = 2 목요일 = 3 금요일 = 4 토요일 = 5 일요일 = 6