(word)
| 22 | SUBJUNCTIVE = "subjunctive" # It would be nice to go for a walk sometime. |
| 23 | |
| 24 | def s(word): |
| 25 | return word.string.lower() |
| 26 | def join(words): |
| 27 | return " ".join([w.string.lower() for w in words]) |
| 28 | def question(sentence): |
no outgoing calls