Movatterモバイル変換


[0]ホーム

URL:


Python Tutorial

Python - Operators



Python Operators

Python operators are special symbols used to perform specific operations on one or more operands. Thevariables, values, or expressions can be used as operands. For example, Python's addition operator (+) is used to perform addition operations on two variables, values, or expressions.

The following are some of the terms related toPython operators:

  • Unary operators: Python operators that require one operand to perform a specific operation are known as unary operators.
  • Binary operators: Python operators that require two operands to perform a specific operation are known as binary operators.
  • Operands: Variables, values, or expressions that are used with the operator to perform a specific operation.

Types of Python Operators

Python operators are categorized in the following categories −

Let us have a look at all the operators one by one.

Python Arithmetic Operators

Python Arithmetic operators are used to perform basic mathematical operations such as addition, subtraction, multiplication, etc.

The following table contains all arithmetic operators with their symbols, names, and examples (assume that the values ofa andb are 10 and 20, respectively) −

OperatorNameExample
+Additiona + b = 30
-Subtractiona b = -10
*Multiplicationa * b = 200
/Divisionb / a = 2
% Modulusb % a = 0
** Exponenta**b =10**20
//Floor Division9//2 = 4

Example of Python Arithmetic Operators

a = 21b = 10c = 0c = a + bprint ("a: {} b: {} a+b: {}".format(a,b,c))c = a - bprint ("a: {} b: {} a-b: {}".format(a,b,c) )c = a * bprint ("a: {} b: {} a*b: {}".format(a,b,c))c = a / bprint ("a: {} b: {} a/b: {}".format(a,b,c))c = a % bprint ("a: {} b: {} a%b: {}".format(a,b,c))a = 2b = 3c = a**b print ("a: {} b: {} a**b: {}".format(a,b,c))a = 10b = 5c = a//b print ("a: {} b: {} a//b: {}".format(a,b,c))

Output

a: 21 b: 10 a+b: 31a: 21 b: 10 a-b: 11a: 21 b: 10 a*b: 210a: 21 b: 10 a/b: 2.1a: 21 b: 10 a%b: 1a: 2 b: 3 a**b: 8a: 10 b: 5 a//b: 2

Python Comparison Operators

Python Comparison operators compare the values on either side of them and decide the relation among them. They are also called Relational operators.

The following table contains all comparison operators with their symbols, names, and examples (assume that the values ofa andb are 10 and 20, respectively) −

OperatorNameExample
==Equal(a == b) is not true.
!=Not equal(a != b) is true.
>Greater than(a > b) is not true.
<Less than(a < b) is true.
>=Greater than or equal to(a >= b) is not true.
<=Less than or equal to(a <= b) is true.

Example of Python Comparison Operators

a = 21b = 10if ( a == b ):   print ("Line 1 - a is equal to b")else:   print ("Line 1 - a is not equal to b")if ( a != b ):   print ("Line 2 - a is not equal to b")else:   print ("Line 2 - a is equal to b")if ( a < b ):   print ("Line 3 - a is less than b" )else:   print ("Line 3 - a is not less than b")if ( a > b ):   print ("Line 4 - a is greater than b")else:   print ("Line 4 - a is not greater than b")a,b=b,a #values of a and b swapped. a becomes 10, b becomes 21if ( a <= b ):   print ("Line 5 - a is either less than or equal to  b")else:   print ("Line 5 - a is neither less than nor equal to  b")if ( b >= a ):   print ("Line 6 - b is either greater than  or equal to b")else:   print ("Line 6 - b is neither greater than  nor equal to b")

Output

Line 1 - a is not equal to bLine 2 - a is not equal to bLine 3 - a is not less than bLine 4 - a is greater than bLine 5 - a is either less than or equal to  bLine 6 - b is either greater than  or equal to b

Python Assignment Operators

Python Assignment operators are used to assign values to variables. Following is a table which shows all Python assignment operators.

The following table contains all assignment operators with their symbols, names, and examples −

OperatorExampleSame As
=a = 10a = 10
+=a += 30a = a + 30
-=a -= 15a = a - 15
*=a *= 10a = a * 10
/=a /= 5a = a / 5
%=a %= 5a = a % 5
**=a **= 4a = a ** 4
//=a //= 5a = a // 5
&=a &= 5a = a & 5
|=a |= 5a = a | 5
^=a ^= 5a = a ^ 5
>>=a >>= 5a = a >> 5
<<=a <<= 5a = a << 5

Example of Python Assignment Operators

a = 21b = 10c = 0print ("a: {} b: {} c : {}".format(a,b,c))c = a + bprint ("a: {}  c = a + b: {}".format(a,c))c += aprint ("a: {} c += a: {}".format(a,c))c *= aprint ("a: {} c *= a: {}".format(a,c))c /= a print ("a: {} c /= a : {}".format(a,c))c  = 2print ("a: {} b: {} c : {}".format(a,b,c))c %= aprint ("a: {} c %= a: {}".format(a,c))c **= aprint ("a: {} c **= a: {}".format(a,c))c //= aprint ("a: {} c //= a: {}".format(a,c))

Output

a: 21 b: 10 c : 0a: 21  c = a + b: 31a: 21 c += a: 52a: 21 c *= a: 1092a: 21 c /= a : 52.0a: 21 b: 10 c : 2a: 21 c %= a: 2a: 21 c **= a: 2097152a: 21 c //= a: 99864

Python Bitwise Operators

Python Bitwise operator works on bits and performs bit by bit operation. These operators are used to compare binary numbers.

The following table contains all bitwise operators with their symbols, names, and examples −

OperatorNameExample
&ANDa & b
|ORa | b
^XORa ^ b
~NOT~a
<<Zero fill left shifta << 3
>>Signed right shifta >> 3

Example of Python Bitwise Operators

a = 20            b = 10            print ('a=',a,':',bin(a),'b=',b,':',bin(b))c = 0c = a & b;        print ("result of AND is ", c,':',bin(c))c = a | b;     print ("result of OR is ", c,':',bin(c))c = a ^ b;        print ("result of EXOR is ", c,':',bin(c))c = ~a;           print ("result of COMPLEMENT is ", c,':',bin(c))c = a << 2;       print ("result of LEFT SHIFT is ", c,':',bin(c))c = a >> 2;       print ("result of RIGHT SHIFT is ", c,':',bin(c))

Output

a= 20 : 0b10100 b= 10 : 0b1010result of AND is  0 : 0b0result of OR is  30 : 0b11110result of EXOR is  30 : 0b11110result of COMPLEMENT is  -21 : -0b10101result of LEFT SHIFT is  80 : 0b1010000result of RIGHT SHIFT is  5 : 0b101

Python Logical Operators

Python logical operators are used to combile two or more conditions and check the final result. There are following logical operators supported by Python language. Assume variable a holds 10 and variable b holds 20 then

The following table contains all logical operators with their symbols, names, and examples −

OperatorNameExample
andANDa and b
orORa or b
notNOTnot(a)

Example of Python Logical Operators

var = 5print(var > 3 and var < 10)print(var > 3 or var < 4)print(not (var > 3 and var < 10))

Output

TrueTrueFalse

Python Membership Operators

Python'smembership operators test for membership in a sequence, such as strings, lists, or tuples.

There are two membership operators as explained below −

OperatorDescriptionExample
inReturns True if it finds a variable in the specified sequence, false otherwise.a in b
not inreturns True if it does not finds a variable in the specified sequence and false otherwise.a not in b

Example of Python Membership Operators

a = 10b = 20list = [1, 2, 3, 4, 5 ]print ("a:", a, "b:", b, "list:", list)if ( a in list ):   print ("a is present in the given list")else:   print ("a is not present in the given list")if ( b not in list ):   print ("b is not present in the given list")else:   print ("b is present in the given list")c=b/aprint ("c:", c, "list:", list)if ( c in list ):   print ("c is available in the given list")else:    print ("c is not available in the given list")

Output

a: 10 b: 20 list: [1, 2, 3, 4, 5]a is not present in the given listb is not present in the given listc: 2.0 list: [1, 2, 3, 4, 5]c is available in the given list

Python Identity Operators

Python identity operators compare the memory locations of two objects.

There are two Identity operators explained below −

OperatorDescriptionExample
isReturns True if both variables are the same object and false otherwise.a is b
is notReturns True if both variables are not the same object and false otherwise.a is not b

Example of Python Identity Operators

a = [1, 2, 3, 4, 5]b = [1, 2, 3, 4, 5]c = aprint(a is c)print(a is b)print(a is not c)print(a is not b)

Output

TrueFalseFalseTrue

Python Operators Precedence

Operators precedence decides the order of the evaluation in which an operator is evaluated. Python operators have different levels of precedence. The following table contains the list of operators having highest to lowest precedence −

The following table lists all operators from highestprecedence to lowest.

Sr.No.Operator & Description
1

**

Exponentiation (raise to the power)

2

~ + -

Complement, unary plus and minus (method names for the last two are +@ and -@)

3

* / % //

Multiply, divide, modulo and floor division

4

+ -

Addition and subtraction

5

>> <<

Right and left bitwise shift

6

&

Bitwise 'AND'

7

^ |

Bitwise exclusive `OR' and regular `OR'

8

<= < > >=

Comparison operators

9

<> == !=

Equality operators

10

= %= /= //= -= += *= **=

Assignment operators

11

is is not

Identity operators

12

in not in

Membership operators

13

not or and

Logical operators

Read more about the Python operators precedence here:Python operators precedence

Print Page
Advertisements

[8]ページ先頭

©2009-2025 Movatter.jp