Created
January 16, 2018 13:03
-
-
Save lhsfcboy/98b7532abd2834cf12e82ccb6d5a814e to your computer and use it in GitHub Desktop.
python中的枚举类型, 有待整理
This file contains 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, unique | |
@unique | |
class Side(Enum): | |
Buy = 0 | |
Sell = 1 | |
class OrderType(Enum): | |
Market = 0 | |
Limit = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment