■ date 클래스의 toordinal 메소드를 사용해 1년 1월 1일 이후 누적 날짜 수를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import datetime date1 = datetime.date.today() ordinal1 = date1.toordinal() print(ordinal1) """ 738401 """ |
■ date 클래스의 toordinal 메소드를 사용해 1년 1월 1일 이후 누적 날짜 수를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import datetime date1 = datetime.date.today() ordinal1 = date1.toordinal() print(ordinal1) """ 738401 """ |