Returns a string with the article + the word.
(word, article=INDEFINITE)
| 89 | _article = article |
| 90 | |
| 91 | def referenced(word, article=INDEFINITE): |
| 92 | """ Returns a string with the article + the word. |
| 93 | """ |
| 94 | return "%s %s" % (_article(word, article), word) |
| 95 | |
| 96 | #print referenced("hour") |
| 97 | #print referenced("FBI") |
no outgoing calls
no test coverage detected
searching dependent graphs…