Python is a multipurpose language, beloved by data scientists and full stack engineers alike. It promotes clear and concise code, thanks to its syntactic sugarness and philosophy. In this article, I will explain in depth how the most anticipated Python feature works: structural pattern matching.
read more “Structural Pattern Matching in Python: In-Depth Review”Tag: feature
Deep dive into ES6 Symbols
ES6, released in 2015, introduced a lot of features: the class
keyword, generators, const
/let
declarations and so on. But one feature that kind of went under the radar is the Symbol
data structure. In this post, I will explain what ES6 Symbols are, why you might want to use it and how it works.