The next stable version of popular open source programming language, Python 3.10, has been released, bringing with it a host of new syntax and typing features that’ll appeal to long-time developers.
Python 3.10 follows the languages’ 30th anniversary earlier this year in February 2021, and though it doesn’t have a long list of new features, the latest release includes a new type union operator to help developers write cleaner code.
The developers have also polished the interpreter, in the hopes that the changes will make Python code a little easier to debug. For starters, error messages will finally point to where the error actually is, while making sure the error message is informative enough to help the developers take corrective action.
- Here’s our roundup of the best laptops for programming
- Get started with programming with these best Python courses
- These are the best IDEs for programming in Python
However, the big feature of the release is structural pattern matching, which reportedly grew out of earlier failed attempts to add a switch/case-like syntax to Python.
Structural pattern matching
With structural pattern matching developers can match variables against one of a set of possible values, without relying on if/else/elif blocks for handling expression values anymore. Some developers suggest that the feature can be thought of as being similar to a switch statement in C and Java.
Interestingly however, structural pattern matching in Python also enables developers to match against patterns of values.
The feature is implemented via a match statement that “takes an expression and compares its value to successive patterns given as one or more case blocks,” and is designed to equip developers with an easier way to extract information from complex data types.
The Python developers have explained and illustrated the feature in the release notes with relevant examples, and have also provided an in-depth tutorial to help developers get to grips with it.
- These are the best Linux distros for developers
Via DevClass
No comments:
Post a Comment