Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'scope'

1504465 - Bindings: python closure pain binding scope
  1. contains = {}
  2. for c in 'aeiou':
  3.   contains[c] = lambda s: c in s
  4.  
  5.  
  6. contains['u']('food')     # => False   ( expected)
  7. contains['u']('zuul')     # => True    ( expected)
  8.  
  9.  
1504459 - Bindings: python closure pain binding scope
  1. contains = {}
  2. for c in 'aeiou':
  3.   contains[c] = lambda s: c in s
  4.  
  5.  
  6. contains['u']('food')     # => False   ( expected)
  7. contains['u']('zuul')     # => True    ( expected)
  8.  
  9.  
fantasy-obligation