The Magic of Python’s *args and **kwargs — Flexible Function Power
You ever look at a few lines of code and think, "There has to be a cleaner way to write this"? That’s exactly how I felt the first time I saw this: temp = a a = b b = temp It’s basic. It works. But… it’s not Pythonic.

You ever look at a few lines of code and think, "There has to be a cleaner way to write this"? That’s exactly how I felt the first time I saw this:
temp = a
a = b
b = temp
It’s basic. It works. But… it’s not Pythonic.