28.10.2021 Views

Python Tutorial ( PDFDrive )

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Line 1 - Value of c is 12

Line 2 - Value of c is 61

Line 3 - Value of c is 49

Line 4 - Value of c is -61

Line 5 - Value of c is 240

Line 6 - Value of c is 15

Python Logical Operators:

There are following logical operators supported by Python language. Assume variable a holds 10 and variable b

holds 20, then:

Operator Description

Example

and

or

Called Logical AND operator. If both the operands are true, then the condition

becomes true.

Called Logical OR Operator. If any of the two operands are non zero, then the

condition becomes true.

(a and b) is true.

(a or b) is true.

not

Called Logical NOT Operator. Used to reverse the logical state of its operand.

If a condition is true, then Logical NOT operator will make it false.

not(a and b) is false.

Example:

Try the following example to understand all the logical operators available in Python programming language:

#!/usr/bin/python

a = 10

b = 20

c = 0

if ( a and b ):

print "Line 1 - a and b are true"

else:

print "Line 1 - Either a is not true or b is not true"

if ( a or b ):

print "Line 2 - Either a is true or b is true or both are true"

else:

print "Line 2 - Neither a is true nor b is true"

a = 0

if ( a and b ):

TUTORIALS POINT

Simply Easy Learning

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!