■ KoreanLunarCalendar 클래스의 getChineseGapJaString 메소드를 사용해 육십갑자(한자) 문자열을 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import korean_lunar_calendar calendar = korean_lunar_calendar.KoreanLunarCalendar() # 양력 날짜를 설정한다. calendar.setSolarDate(2019, 9, 22) # 한자 육십갑자를 구한다. chineseSexagenaryCycle = calendar.getChineseGapJaString() print(chineseSexagenaryCycle) """ 己亥年 癸酉月 壬戌日 """ |