1. Learn
  2. /
  3. Courses
  4. /
  5. Software Engineering Principles in Python

Exercise

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

Instructions

100 XP
  • The possible package names to import are the following: text_analyzer, textAnalyzer, TextAnalyzer, & __text_analyzer__.
  • import the package from the list above that follows the PEP 8 naming conventions.