Improve Your Python With Python Tricks – Real Python
realpython.com › python-tricksA Python Trick either teaches an aspect of Python with a simple illustration, or serves as a motivating example to dig deeper and develop an intuitive understanding. Here are a few examples of the kinds of tricks you’ll receive: # How to merge two dictionaries # in Python 3.5+: >>> x = {'a': 1, 'b': 2} >>> y = {'b': 3, 'c': 4} >>> z = {**x, **y} >>> z {'c': 4, 'a': 1, 'b': 3} # In Python 2.x you could use this: >>> z = dict(x, **y) >>> z {'a': 1, 'c': 4, 'b': 3}