Skip to content

Instantly share code, notes, and snippets.

@brettfazio
Created August 1, 2020 17:52
Show Gist options
  • Select an option

  • Save brettfazio/3edc54279ec072d3e6d32f66d5525b78 to your computer and use it in GitHub Desktop.

Select an option

Save brettfazio/3edc54279ec072d3e6d32f66d5525b78 to your computer and use it in GitHub Desktop.
from enum import Enum
class State(Enum):
AIR = 0
LAND = 1
SEA = 2
myState = State.AIR
# Prints 0
print(myState.value)
# Prints AIR
print(myState.name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment