Skip to content

PRO TIP Block youtube.com at the DNS level — Pi-hole, NextDNS or your hosts file — but allow youtube-nocookie.com and i.ytimg.com. These tutorials keep playing; the rabbit hole does not.

Learning without distractions

You’ll love Python data classes! 📋

37.4K views on YouTube

#python #coding #programming

# Data Class = A special kind of class that’s designed mostly for holding data
# without writing a lot of the boilerplate code for regular classes.
# They automatically generate: __init__, __repr__, __eq__
# (Python 3.7+)