MaximCherchuk

wtf?

Aug 14th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. i = 4
  2. def foo():
  3.     def bar():
  4.         print(i)
  5.     for i in [1, 2, 3]:
  6.         print(i)
  7.     bar()
  8. foo()
Advertisement
Add Comment
Please, Sign In to add comment