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

Learn Python generator expressions in 9 minutes! ♻️

12.6K views on YouTube

#python #coding #programming

# Generator Expression = Similar to a list comprehension but uses () instead of []
# Creates a generator (iterator) that yields values one at a time
# No need to define a function or use yield
# Less flexible than a gen func and not reusable
# gen object = (expression for value in iterable if condition)