Add splitter text docs

This commit is contained in:
2021-02-02 12:21:10 +07:00
parent 60563b54d2
commit d187c66dde
8 changed files with 72 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
# Text Splitter
***Objectives***
- [ ] Split the statement into array of words
- [ ] Split the concat words into other of array
***Declaratives***
- Statement I (split the concat words)
```text
myword and youknowaboutitaswell
```
- Result as output
```text
my word and you know about it as well
```
- Result as output in code
```text
[my, word, and, you, know, about, it, as, well]
```

View File

@@ -0,0 +1,7 @@
import enchant
locale = 'en_US'
dict = enchant.Dict(locale)
print(dict.check("Hello"))