Ejemplo n.º 1
0
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__)
Ejemplo n.º 2
0
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."
)
Ejemplo n.º 3
0
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."
)
Ejemplo n.º 4
0
import count

count.text_analyzer("wale")

print(count.text_analyzer.__doc__)