Glossary

Rules (required by Python):

Variable names can contain letters, numbers, and underscores - Variable names cannot start with a number - Variable names are case-sensitive (`revenue` and `Revenue` are different variables) - Variable names cannot be Python keywords (`if`, `for`, `while`, `class`, etc.)

Learn More

Related Terms