Crucial Python Concepts
1. Underscore
In the interactive shell, the underscore stores the value of the previously evaluated expression.
(Using underscore as an anonymous variable that I don’t have to access or utilize)
data = [(1, 'one'), (2, 'two'), (3, 'three')]
for _, wo...
nishitiwari.hashnode.dev2 min read