Називання та зв’язування

Оновлено: 28.04.2023

class A:
    a = 42
    b = list(a + i for i in range(10))
i = 10
def f():
    print(i)
i = 42
f()