Created
August 1, 2020 17:52
-
-
Save brettfazio/3edc54279ec072d3e6d32f66d5525b78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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