Python Style Question
Steve Holden
steve at holdenweb.com
Thu Jan 22 11:11:35 EST 2009
K-Dawg wrote:
> I am trying to become more pythonic as I learn python and get my mind
> around it instead of other languages I have used.
>
> I have an app that has a series of classes for objects it uses. From a
> style perspective, which should be done:
>
> Different py file for each class
>
> or
>
> One py file with all the classes
>
> The classes are small with a constructor and a few methods, no more than
> a couple, some with just one other method.
>
> Which is more "pythonic"?
>
One .py file with all the classes. But it's also very pythonic that you
have the choice, and can select the option that suits you best ;-)
regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC http://www.holdenweb.com/
More information about the Python-list
mailing list