Advertisement
Guest User

Untitled

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