Python Tip #83 (of 365):
Don't overuse variables in Python.
Expressions are valid almost anywhere in Python.
If a variable name isn't needed to refer to a value multiple times AND the variable name isn't any clearer than the Python expression that produces its value, just use the expression instead.
๐งต (1/4)