This recipe will show you the value of adhering to a code naming scheme: it helps us to find the code we want to extend, and reminds us of the design of our program.
Using a code naming convention
Getting ready
In this recipe, we will look at Python module names and look at good naming conventions.
How to do it...
We will create example projects with different Python module names to compare the naming:
- Create a new ModuleNames folder under Folder1.
- Add the following Python modules, 1, 11, 2, and 3:
- Next, create a new ModuleNames_ folder under Folder1.
- Add the following...