Guest User

Untitled

a guest
Jan 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. a = lambda value: value in str_values
  2.  
  3. def my_test(value):
  4. return value in str_values
  5.  
  6. b = my_test
  7.  
  8.  
  9. a("test")
  10.  
  11. #Exactly the same as
  12.  
  13. b("test")
Add Comment
Please, Sign In to add comment