Does python have true and false values. I would like to do something like class A: def _init_(self): self.processed=false def process(self): self.processed=true at the moment I am using false=(1==0) true=(1==1) but would like something more elegant, or at least less sloppy.