I am trying to become more pythonic as I learn python and get my mind around it instead of other languages I have used. <br><br>I have an app that has a series of classes for objects it uses.  From a style perspective, which should be done:<br>
<br>Different py file for each class<br><br>or<br><br>One py file with all the classes<br><br>The classes are small with a constructor and a few methods, no more than a couple, some with just one other method.<br><br>Which is more "pythonic"?<br>
<br>Thanks.<br><br>Kevin<br>