Sök…


Anmärkningar

Enums lades till Python i version 3.4 av PEP 435 .

Skapa enum (Python 2.4 till 3.3)

Enum har backportats från Python 3.4 till Python 2.4 till Python 3.3. Du kan få detta enum34- backporten från PyPI.

pip install enum34

Skapa ett enum är identiskt med hur det fungerar i Python 3.4+

from enum import Enum

class Color(Enum):
    red = 1
    green = 2
    blue = 3

print(Color.red)  # Color.red    
print(Color(1))  # Color.red    
print(Color['red'])  # Color.red  

Iteration

Enums är iterable:

class Color(Enum):
    red = 1
    green = 2
    blue = 3

[c for c in Color]  # [<Color.red: 1>, <Color.green: 2>, <Color.blue: 3>]


Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow