Naming packages
We covered the PEP 8 guidelines for naming packages. In this exercise, you'll use that knowledge to identify a package following the requirements.
For additional reference, you can view the PEP 8 section on package naming here
Questo esercizio fa parte del corso
Software Engineering Principles in Python
Istruzioni dell'esercizio
- The possible package names to
importare the following:text_analyzer,textAnalyzer,TextAnalyzer, &__text_analyzer__. importthe package from the list above that follows the PEP 8 naming conventions.
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
# Import the package with a name that follows PEP 8
____