Python Forum

Full Version: Organizing tips
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone have a reference for proficient organizing?
What exactly are you asking for?

packages?
https://docs.python.org/3/tutorial/modules.html
https://docs.python.org/3/tutorial/modul...l#packages

use docstrings in everything, modules, classes, methods/functions, etc. Program for re-usability, etc.

tutorials on this forum related to organization are my pygame tutorials whihc start from a simple window creation to organizing different moduels/classes, etc. Part 1-8. But its more geared toward the person interested in making a game, not organization.