VOOZH about

URL: https://www.geeksforgeeks.org/python/enum-intenum-in-python/

⇱ enum.IntEnum in Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

enum.IntEnum in Python

Last Updated : 22 Apr, 2020
With the help of enum.IntEnum() method, we can get the enumeration based on integer value, if we compare with normal enum based class it will fail by using enum.IntEnum() method.
Syntax : enum.IntEnum Return : IntEnum doesn't have a written type.
Example #1 : In this example we can see that by using enum.IntEnum() method, we are able to get the enumeration based on integer value by using this method. OutPut :
True
Example #2 :
OutPut :
False
Comment
Article Tags:
Article Tags: