한글 판별과 추출
음절과 자모 판별 (is_complete_hangul, is_chosung, is_jungsung, is_jongsung)
완성형 음절과 자모 역할 판별
Documentation Index
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