Python 3.8 introduced the self-documenting expression with the = character: ``` In [18]: f"{number = }" Out[18]: 'number = 1.2' ``` This is really handy for debugging.