Algorithms, functions, classes, regular expressions, iterators, generators, OOP, exceptions, NumPy, pandas, scikit-learn
https://telega.in/c/python_tasks
Questions — @dina_ladnyuk
Post #3121
576
Что выведет код?
def make():
count = 0
def inner():
nonlocal count
count += 1
return count
return inner
f = make()
print(f(), end = " ")
print(f(), end = " ")
g = make()
print(g())