如何比较 Python 中的枚举?

How to compare Enums in Python?(如何比较 Python 中的枚举?)
本文介绍了如何比较 Python 中的枚举?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从 Python 3.4 开始,存在 Enum 类.

Since Python 3.4, the Enum class exists.

我正在编写一个程序,其中一些常量具有特定的顺序,我想知道哪种方式最适合比较它们:

I am writing a program, where some constants have a specific order and I wonder which way is the most pythonic to compare them:

class Information(Enum):
    ValueOnly = 0
    FirstDerivative = 1
    SecondDerivative = 2

现在有一种方法,需要将Information的给定information与不同的枚举进行比较:

Now there is a method, which needs to compare a given information of Information with the different enums:

information = Information.FirstDerivative
print(value)
if information >= Information.FirstDerivative:
    print(jacobian)
if information >= Information.SecondDerivative:
    print(hessian)

直接比较不适用于枚举,所以有三种方法,我想知道哪种方法更受欢迎:

The direct comparison does not work with Enums, so there are three approaches and I wonder which one is preferred:

方法一:使用价值观:

if information.value >= Information.FirstDerivative.value:
     ...

方法 2:使用 IntEnum:

Approach 2: Use IntEnum:

class Information(IntEnum):
    ...

方法 3:根本不使用枚举:

Approach 3: Not using Enums at all:

class Information:
    ValueOnly = 0
    FirstDerivative = 1
    SecondDerivative = 2

每种方法都有效,方法 1 有点冗长,而方法 2 使用不推荐的 IntEnum 类,而方法 3 似乎是在添加 Enum 之前这样做的方式.

Each approach works, Approach 1 is a bit more verbose, while Approach 2 uses the not recommended IntEnum-class, while and Approach 3 seems to be the way one did this before Enum was added.

我倾向于使用方法 1,但我不确定.

I tend to use Approach 1, but I am not sure.

感谢您的建议!

推荐答案

我之前没有遇到过 Enum,所以我扫描了文档(https://docs.python.org/3/library/enum.html) ... 并找到了 OrderedEnum(第 8.13.13.2 节)这不是你想要的吗?来自文档:

I hadn'r encountered Enum before so I scanned the doc (https://docs.python.org/3/library/enum.html) ... and found OrderedEnum (section 8.13.13.2) Isn't this what you want? From the doc:

>>> class Grade(OrderedEnum):
...     A = 5
...     B = 4
...     C = 3
...     D = 2
...     F = 1
...
>>> Grade.C < Grade.A
True

这篇关于如何比较 Python 中的枚举?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)