1. Learn
  2. /
  3. Projects
  4. /
  5. Case Study: Building Software in Python

Connected

Exercise

Using good variable names

Proper variable naming conventions improve readability, enhance maintainability, and reduce errors. Use proper naming conventions to name a class and a function.

Instructions

100 XP
  • Use the proper variable name for the class. Choose from mortgage_calculator or MortgageCalculator?
  • Use the proper variable name for the function. Choose from calculate_monthly_payment or CalculateMonthlyPayment?