✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Дан фрагмент кода на Python. В 4й строке выполняется вызов функции dir. Откуда эта функция?
def main():def foo():
def bar():
dir()
bar()
foo()
main()
def dir():pass