Skip to content

Instantly share code, notes, and snippets.

@thanakijwanavit
Created March 14, 2021 15:53
Show Gist options
  • Save thanakijwanavit/1fe546726782126d882b6553db760347 to your computer and use it in GitHub Desktop.
Save thanakijwanavit/1fe546726782126d882b6553db760347 to your computer and use it in GitHub Desktop.
enum example python
from enum import Enum
class Animal(Enum):
cat=1
dog=2
def testEnum(te:Animal):
animal:Animal = Animal[te]
print(animal.name)
print(animal.value)
testEnum('cat')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment