python enum 判断key 或者value是否存在
https://www.cnblogs.com/ibingshan/p/10303794.htmlfrom enum import Enumclass testEnum(int,Enum): key1 = 0 key2 = 1 "key1" in testEnum.__members__0 in testEnum._value2member_map_