![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.python archiveRe: (not really) randon ideas
From: Marc 'BlackJack' Rintsch <bj_666@gmx.net>
Date: Sat Mar 25 2006 - 22:57:48 CET
In <1143320266.676215.253250@j33g2000cwa.googlegroups.com>, oluoluolu
> I have been programming in Python for many years, and I generally have
There's a cookbook recipe:
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/413486
And a package in the Chesseshop:
http://cheeseshop.python.org/pypi/enum/0.4.1
> * constants
People tend to write the names of constants all uppercase. Example::
ANSWER = 42
Ciao,
|