Are there any useful naming conventions for modules, classes and functions?

For instance, should I name functions as verbs and classes as nouns?

eg 
class Transformer():
    pass

def transform():
    do_stuff

What about the module name? transformations.py or transform.py?

What do people do with their own code? Do folks find that being
consistent helps them remember what is what, or do you name objects
whatever feels right at the time?


-- 
Steven.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to