Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. # membership example
  2. my_list = [1, 2, 3 ,4]
  3. if 1 in my_list:
  4. print("1 is in my list")
  5.  
  6. # identity example
  7. x, y = 1, 2
  8. if x is y:
  9. print("x is y")
  10. else:
  11. print("x is not y")
  12.  
  13. # comparison example
  14.  
  15. # logical example
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement