I\'m quite new to Python in general.
I\'m aware that I can create multiple classes in the same .py file, but I\'m wondering if I should create each class in its own
Each .py file represents a module, so you should keep logical groups of functions, constants and classes together in the same file.
Each class in a .py file will just create epic bloat in your module table, since if you're only interested in one class you can still
from whatever import SomeClass