Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
자모를 초성이나 종성으로 사용할 수 있는지 확인
can_be_chosung(char: str) -> bool
can_be_jongsung(char: str) -> bool
from hangulpy import can_be_chosung, can_be_jongsung print(can_be_chosung("ㄸ")) # True print(can_be_chosung("ㄳ")) # False print(can_be_jongsung("ㄳ")) # True print(can_be_jongsung("ㄸ")) # False