Find knowledge base article(s) by searching for keywords in the title e.g. type linux in the search box below
Find knowledge base article(s) by browsing the subject categories of articles
Technology quick references, cheatsheets, user manuals etc.
Shop Online through ShopifyLite
Tutorials on various IT applications.
Search Title    (UL:0 |SS:f)

Scripting >> Python >> Syntax >> What are the python 2.x operators

Full list of operators

+
-
*
**
/
//
%
<<
>>
&
|
^
~
<
>
<=
>=
==
!=
<>

Comparison operators

x == y      # x is equal to y
x != y      # x is not equal to y
x > y       # x is greater than y
x < y       # x is less than y
x >= y      # x is greater than or equal to y
x <= y      # x is less than or equal to y
x is y      # x is the same as y
x is not y  # x is not the same as y

returns True or False

 

[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]