Use named tuples to stop yourself from remembering order of tuples
Let's consider an example where you're returning some info about a Person
object from a function in the form of a tuple.
def info():
...
return name, address, age
Now, in this scenario the receiving …
Read more