Функция dir() - удобна для получения списка атрибутов у любого объекта.
Ранее я писал про функцию __dir__() в модуле (не путайте её с переменной __all__(), которая указывает список объектов для импорта если встречается конструкция from module import *).
Скорее всего вы уже знаете как использовать функцию dir(). Любой объект может реализовать метод __dir__() чтобы указать список имеющийхся и динамических атрибутов. И функция dir() поможет получить список этих атрибутов.
>>> dir(str)
['__add__', '__class__', '__contains__', ...]
У этой функции есть еще один способ применения. Её можно вызвать без аргумента, и в таком случае она вернёт список имён в текущем неймспейсе.
>>> dir()
['__builtins__', '__doc__', '__file__', ...]
>>> def test():
>>> x = 1
>>> print(dir())
>>> test()
['x']
#basic#tricks
🍿 Government Cheese: Apple TV+ Goes Full Surreal with This Wild Comedy
📆Premiere: April 16, 2025
🎭Genre: #Comedy · #Surreal
David Oyelowo (‘Selma’, ‘Nightingale’) leads Government Cheese, a wild, satirical take on the American Dream. Set in 1969, the show follows Hampton Chambers, a con man fresh out of prison who returns to his family with big dreams—only to find they’ve moved on without him. His grand plan? A bizarre invention, a pile of debt, and a “righteous path” full of chaos.
Think Fargo meets Wes Anderson, but with a fresh, Black-led perspective. Apple TV+ is leaning hard into quirky crime comedies, and this one, with Pharrell Williams on the soundtrack, feels like a bold, must-watch gamble 🎶🔥. Will it be a cult classic or just a wild experiment? We’ll find out soon.