# 0109.py x=10 def f (t): x=None def h (): nonlocal x x=100 h(); return x*t print (f(2), x) # 200 10