Returns the indefinite (a or an) or definite (the) article for the given word.
(word, function=INDEFINITE)
| 82 | "definite", "indefinite" |
| 83 | |
| 84 | def article(word, function=INDEFINITE): |
| 85 | """ Returns the indefinite (a or an) or definite (the) article for the given word. |
| 86 | """ |
| 87 | return function == DEFINITE and definite_article(word) or indefinite_article(word) |
| 88 | |
| 89 | _article = article |
| 90 |
no test coverage detected
searching dependent graphs…