Now you’re ready for the new release of Python! You’ve gotten a taste of the updates in Python 3.12, such as:
- Improvements to f-strings
- More did-you-mean error messages
- New features in the standard library
- Additions to static typing
- Changes to the CPython interpreter
If you’d like to continue exploring, then be sure to read the Python documentation, What’s New in Python 3.12, as well as the PEPs that you’ve covered in this course:
- PEP 554 – Multiple Interpreters in the Stdlib
- PEP 683 – Immortal Objects, Using a Fixed Refcount
- PEP 684 – A Per-Interpreter GIL
- PEP 695 – Type Parameter Syntax
- PEP 698 – Override Decorator for Static Typing
- PEP 701 – Syntactic formalization of f-strings
- PEP 709 – Inlined comprehensions
Real Python also has you covered if you’d like to learn more about some of these improvements: