import sys
def depth(n):
if n == 0:
return sys._getframe().f_back.f_code.co_name
return depth(n - 1)
print(depth(2))
Post #3134
532
Что выведет код?