728x90
๋ฐ์ํ
!pip install git+https://github.com/ssut/py-hanspell.git
from hanspell import spell_checker
sent = "์ด์ ๋ ์์ค์ด. ๊ฐ๊ธฐ ๋นจ๋ฆฌ ๋ณ์! "
spelled_sent = spell_checker.check(sent)
hanspell_sent = spelled_sent.checked
print(hanspell_sent)
์ด์ ๋ ์ ์ค์ด. ๊ฐ๊ธฐ ๋นจ๋ฆฌ ๋์!
๋ฐ์ํ