Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. >>> def do_twice(f) :
  2. ... f()
  3. ... f()
  4. ...
  5. >>> def print_spam() :
  6. ... print 'spam'
  7. ...
  8. >>> do_twice(print_spam)
  9. spam
  10. spam
  11. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement