René's URL Explorer Experiment


Title: Building Enumerations With Python's enum (Summary) (Video) – Real Python

Open Graph Title: Building Enumerations With Python's enum (Summary) – Real Python

Description: Summary. Well done. You’ve made it to the end of the course. You now know how to create and use enumerations in Python. These are common and popular data types in many programming languages. With enumerations, you can group sets of related constants…

Open Graph Description: Summary. Well done. You’ve made it to the end of the course. You now know how to create and use enumerations in Python. These are common and popular data types in many programming languages. With enumerations, you can group sets of related constants…

Opengraph URL: https://realpython.com/lessons/python-enum-summary/

X: @realpython

direct link

Domain: realpython.com


Hey, it has json ld scripts:
  {
    "@context": "https://schema.org",
    "@type": "VideoObject",
    "name": "Building Enumerations With Python\u0027s enum (Summary)",
    "description": "Summary. Well done. You’ve made it to the end of the course. You now know how to create and use enumerations in Python. These are common and popular data types in many programming languages. With enumerations, you can group sets of related constants…",
    "thumbnailUrl": ["https://files.realpython.com/media/Build-Enumerations-With-Pythons-enum_Watermarked.bbcd46a82f58.jpg"],
    "uploadDate": "2024-01-30T14:00:00+00:00",
    "duration": "PT1M20S",
    
    "potentialAction": {
      "@type": "SeekToAction",
      "target": "https://realpython.com/lessons/python-enum-summary/#t={seek_to_second_number}",
      "startOffset-input": "required name=seek_to_second_number"
    }
  }
  

authorReal Python
twitter:cardsummary_large_image
twitter:imagehttps://files.realpython.com/media/Build-Enumerations-With-Pythons-enum_Watermarked.bbcd46a82f58.jpg
og:imagehttps://files.realpython.com/media/Build-Enumerations-With-Pythons-enum_Watermarked.bbcd46a82f58.jpg
twitter:creator@realpython
og:typevideo.episode

Links:

https://realpython.com/
Start Herehttps://realpython.com/start-here/
Learn Python https://realpython.com/lessons/python-enum-summary/
Python Tutorials →In-depth articles and video courseshttps://realpython.com/search?kind=article&kind=course&order=newest
Learning Paths →Guided study plans for accelerated learninghttps://realpython.com/learning-paths/
Quizzes & Exercises →Check your learning progresshttps://realpython.com/quizzes/
Browse Topics →Focus on a specific area or skill levelhttps://realpython.com/tutorials/all/
Community Chat →Learn with other Pythonistashttps://realpython.com/community/
Office Hours →Live Q&A calls with Python expertshttps://realpython.com/office-hours/
Podcast →Hear what’s new in the world of Pythonhttps://realpython.com/podcasts/rpp/
Books →Round out your knowledge and learn offlinehttps://realpython.com/products/books/
Reference →Concise definitions for common Python termshttps://realpython.com/ref/
Code Mentor →BetaPersonalized code assistance & learning toolshttps://realpython.com/mentor/
Unlock All Content →https://realpython.com/account/join/
More https://realpython.com/lessons/python-enum-summary/
Learner Storieshttps://realpython.com/learner-stories/
Python Newsletterhttps://realpython.com/newsletter/
Python Job Boardhttps://www.pythonjobshq.com
Meet the Teamhttps://realpython.com/team/
Become a Tutorial Writerhttps://realpython.com/write-for-us/
Become a Video Instructorhttps://realpython.com/become-an-instructor/
Searchhttps://realpython.com/search
https://realpython.com/search
Joinhttps://realpython.com/account/join/
Sign‑Inhttps://realpython.com/account/login/?next=%2Flessons%2Fpython-enum-summary%2F
Unlock This Lessonhttps://realpython.com/account/join/?utm_source=rp_lesson&utm_content=python-enum
Unlock This Lessonhttps://realpython.com/account/join/?utm_source=rp_lesson&utm_content=python-enum
https://realpython.com/courses/python-enum/#team
Building Enumerations With Python's enumhttps://realpython.com/courses/python-enum/
Darren Joneshttps://realpython.com/courses/python-enum/#team
Recommended Tutorialhttps://realpython.com/python-enum/
Course Slides (.pdf)https://realpython.com/courses/python-enum/downloads/python-enum-slides/
Sample Code (.zip)https://realpython.com/courses/python-enum/downloads/python-enum-code/
Ask a Questionhttps://realpython.com/lessons/python-enum-summary/#discussion
https://realpython.com/feedback/survey/course/python-enum/liked/?from=lesson-title
https://realpython.com/feedback/survey/course/python-enum/disliked/?from=lesson-title
Contentshttps://realpython.com/lessons/python-enum-summary/#description
Transcripthttps://realpython.com/lessons/python-enum-summary/#transcript
Discussionhttps://realpython.com/lessons/python-enum-summary/#discussion
Unlock This Lessonhttps://realpython.com/account/join/?utm_source=rp_lesson_preview&utm_content=python-enum
Sign-Inhttps://realpython.com/account/login/
Unlock This Lessonhttps://realpython.com/account/join/?utm_source=rp_lesson_preview&utm_content=python-enum
Sign-Inhttps://realpython.com/account/login/
00:00https://realpython.com/lessons/python-enum-summary/#t=0.47
Summary. Well done.https://realpython.com/lessons/python-enum-summary/#t=0.47
You’ve made it to the end of the course.https://realpython.com/lessons/python-enum-summary/#t=3.025
You now know how to create and use enumerations in Python.https://realpython.com/lessons/python-enum-summary/#t=5.225
These are common and popular data types in manyhttps://realpython.com/lessons/python-enum-summary/#t=9.475
programming languages.https://realpython.com/lessons/python-enum-summary/#t=12.025
00:13https://realpython.com/lessons/python-enum-summary/#t=13.655
With enumerations, you can group sets of related constantshttps://realpython.com/lessons/python-enum-summary/#t=13.655
and access them through the enumeration itself.https://realpython.com/lessons/python-enum-summary/#t=16.585
As you’ve seen, Python doesn’t provide a dedicated enumhttps://realpython.com/lessons/python-enum-summary/#t=19.865
syntax, but the enum module supports this common data typehttps://realpython.com/lessons/python-enum-summary/#t=22.985
through the Enum class.https://realpython.com/lessons/python-enum-summary/#t=26.165
00:29https://realpython.com/lessons/python-enum-summary/#t=29.455
In this course, you’ve learned howhttps://realpython.com/lessons/python-enum-summary/#t=29.455
to create your own enumerations using Python’s Enum class,https://realpython.com/lessons/python-enum-summary/#t=31.115
work with enumerationshttps://realpython.com/lessons/python-enum-summary/#t=35.645
and their members, provide your enumeration classeshttps://realpython.com/lessons/python-enum-summary/#t=36.695
with new functionalities,https://realpython.com/lessons/python-enum-summary/#t=40.135
and use enumerations with some practical examples.https://realpython.com/lessons/python-enum-summary/#t=42.405
00:45https://realpython.com/lessons/python-enum-summary/#t=45.875
You’ve also learned about other useful enumeration types,https://realpython.com/lessons/python-enum-summary/#t=45.875
such as IntEnum, IntFlag, and Flag.https://realpython.com/lessons/python-enum-summary/#t=48.805
They’re available in enumhttps://realpython.com/lessons/python-enum-summary/#t=53.045
and will help you to create specialized enums.https://realpython.com/lessons/python-enum-summary/#t=54.395
00:58https://realpython.com/lessons/python-enum-summary/#t=58.625
With all this knowledge, you are now readyhttps://realpython.com/lessons/python-enum-summary/#t=58.625
to start using Python’s enums to group, name,https://realpython.com/lessons/python-enum-summary/#t=60.635
and handle sets of semantically related constants.https://realpython.com/lessons/python-enum-summary/#t=63.335
Enumerations allow you to better organize your code,https://realpython.com/lessons/python-enum-summary/#t=67.115
making it more readable, explicit, and maintainable.https://realpython.com/lessons/python-enum-summary/#t=69.855
01:14https://realpython.com/lessons/python-enum-summary/#t=74.315
We hope you found this course useful,https://realpython.com/lessons/python-enum-summary/#t=74.315
and we’ll see you again soon at realpython.com.https://realpython.com/lessons/python-enum-summary/#t=75.835
Become a Memberhttps://realpython.com/account/join/
https://realpython.com/lessons/enumeration-examples/
Overviewhttps://realpython.com/courses/python-enum/
Building Enumerations With Python's enum (Overview) 02:06 https://realpython.com/videos/python-enum-overview/
Getting to Know Enumerations 03:41 https://realpython.com/videos/enumerations-intro/
Creating Enumerations in Python 05:28 https://realpython.com/lessons/create-python-enum/
Creating More Enumerations 02:53 https://realpython.com/lessons/more-enumeration-creation/
Creating Enumerations With the Functional API 05:26 https://realpython.com/lessons/functional-api-enumeration-creation/
Using Automatic Values, Aliases, and Unique Values 03:58 https://realpython.com/lessons/automatic-aliases-unique/
Working With Enumerations in Python 04:37 https://realpython.com/lessons/work-enumerations-python/
Using Enumerations in if and match Statements 02:55 https://realpython.com/lessons/enumerations-if-match-statements/
Comparing and Sorting Enumerations 05:52 https://realpython.com/lessons/comparing-sorting-enumerations/
Extending Enumerations With New Behavior 06:51 https://realpython.com/lessons/extending-enumerations-behavior/
Exploring Other Enumeration Classes 07:43 https://realpython.com/lessons/other-enumeration-classes/
Using Enumerations: Two Practical Examples 07:07 https://realpython.com/lessons/enumeration-examples/
Building Enumerations With Python's enum (Summary) 01:20 https://realpython.com/lessons/python-enum-summary/
Privacy Policyhttps://realpython.com/privacy-policy/

Viewport: width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover

Robots: max-image-preview:large


URLs of crawlers that visited me.