Locked learning resources

Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

Locked learning resources

This lesson is for members only. Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

Building Enumerations With Python's enum (Summary)

Now you have a solid understanding of how to create and utilize enumerations in Python. Enumerations, also known as enums, are common data types in many programming languages. By using enums, you can organize related constants into groups and access them through the enumeration itself.

Although Python doesn’t have a specific syntax for enums, you can still create them by making use of the Enum class from the enum module.

In this video course, you’ve learned how to:

  • Create your own enumerations using Python’s Enum class
  • Work with enums and their members
  • Extend the capabilities of your enum classes by adding additional functionalities
  • Apply enums in practical situations with real-world examples

You’ve also gotten to know other valuable enumeration types, such as IntEnum, IntFlag, and Flag. These types are available in the enum module and enable you to create specialized enums.

Locked learning resources

Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

Already a member? Sign-In

Locked learning resources

The full lesson is for members only. Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

Already a member? Sign-In

Become a Member to join the conversation.