Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Python

Idiom #122 Declare an enumeration

Create an enumerated type Suit with 4 possible values SPADES, HEARTS, DIAMONDS, CLUBS.

class Suit:
	SPADES, HEARTS, DIAMONDS, CLUBS = range(4)

Fake enum, works with any version of python.
from enum import Enum
class Suit(Enum):
	SPADES = 1
	HEARTS = 2
	DIAMONDS = 3
	CLUBS = 4

New in Python 3.4
type Suit is (Spades, Hearts, Diamonds, Clubs);

New implementation...
< >
programming-idioms.org