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.
완성형 음절과 자모 역할 판별
is_complete_hangul(char: str) -> bool
is_chosung(char: str) -> bool
is_jungsung(char: str) -> bool
is_jongsung(char: str) -> bool
from hangulpy import is_complete_hangul, is_chosung, is_jungsung, is_jongsung print(is_complete_hangul("한")) # True print(is_chosung("ㄱ")) # True print(is_jungsung("ㅏ")) # True print(is_jongsung("ㄳ")) # True