Advertisement
MatthewRock

Python_Closure3

Apr 9th, 2017
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. def counter_factory(counter):
  2.   def counter_printer():
  3.     print(counter)
  4.   return counter_printer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement