Doug Hellmann wrote: > > one, two, three = range(3) > > print one, two, three If I'm not overly concerned about speed, often I just use string values as enums. This has the advantage that they print out as meaningful names when debugging. Greg