Yesterday I had quite stressful job interview, so there was no #DailyPythonista.
But here we go again. And again with a quick one.
Do you know underscore symbol? The "_" one. Probably so.
In Python, it has two main usages.
First, it's an unnamed variable. You can use it when unpacking tuple (or any other sequence) to "throw away" unneeded values. 🚮
Second, it's the reference to output of previous expression in interpreter. Quite handy if you use #Python as your main calculator on PC. 🧮