🤯TIL for...else exists in Python
Today, I learned that you can pair an else clause with a loop statement such as for or while. It looks like this:
for i in iterator:
# do something
else:
# do something else
This may look quite counterintuitive for the first time, but we wil...
blog.zimo.li3 min read