# -*- coding: UTF-8 -*- def outer(): n = 10 def inner(): print(666) return inner, n f, n = outer() print(f) print(n)