from count import text_analyzer text_analyzer( "Python 2.0, released 2000, introduced features like List comprehensions and a garbage collection system capable of collecting reference cycles." ) text_analyzer( "Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace." ) text_analyzer() print(text_analyzer.__doc__)
from count import text_analyzer text_analyzer( "Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace." )
from count import text_analyzer text_analyzer( "Python 2.0, released 2000, introduced features like List comprehensions and a garbage collection system capable of collecting reference cycles." )
import count count.text_analyzer("wale") print(count.text_analyzer.__doc__)