Advertisement
python_notes

Relational Operators

Sep 6th, 2014
487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. # python Relational Operators
  2.  
  3.  
  4.  
  5. ==    Value Equality / Equivalence
  6.  
  7. !=    Value Inequality / in-equivalence
  8.  
  9. <     less-than
  10.  
  11. >     greater-than
  12.  
  13. <=    less than or equal to
  14.  
  15. >=    greater-than or equal to
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement