Posts
All the articles I've posted.
-
New interesting data structures in Python 3
5 min read Pythontake a look at some data structures that Python 3 offers, but that are not available in Python 2
-
Keyword argument demystify
3 min read PythonThere’s a lot of baffling among Python programmers on what exactly 'keyword arguments' are
-
Looping techniques in Python
1 min read PythonPython has multiple techniques for looping over data structures
-
Enhance your tuples
1 min read PythonStandard Python `tuple`s are lightweight sequences of immutable objects, yet their implementation may prove inconvenient in some scenarios
-
Get more with collections!
1 min read PythonIn addition to Python's built-in data structures (such as `tuple`s, `dict`s, and `list`s), a library module called `collections` provides data structures with additional features, some of which are specializations of the built-in ones
-
There is more to copying
1 min read PythonAn assignment only creates a binding (an association) between a name and a target (object of some type). A copy is sometimes necessary so you can change the value of one object without changing the other (when two names are pointing to the same object)
-
Implementing weak references in Python
1 min read PythonNormal Python references to objects increment the object's reference count thus preventing it from being garbage collected
-
Translating Scanner tokens into primitive types
1 min read JavaTranslating Scanner tokens into primitive types