0% found this document useful (0 votes)
4 views1 page

Python Bitwise and Assignment Operators

The document explains the right shift operator in Python, demonstrating how it fills empty cells with the sign bit and provides examples of bitwise operations on boolean types. It also covers assignment operators and introduces compound assignment operators, listing all possible types in Python. Additionally, it includes contact information for Durgasoft.

Uploaded by

vishnu200121
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Python Bitwise and Assignment Operators

The document explains the right shift operator in Python, demonstrating how it fills empty cells with the sign bit and provides examples of bitwise operations on boolean types. It also covers assignment operators and introduces compound assignment operators, listing all possible types in Python. Additionally, it includes contact information for Durgasoft.

Uploaded by

vishnu200121
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

>> Right Shift operator

After shifting the empty cells we have to fill with sign bit.( 0 for +ve and 1 for -ve)

print(10>>2) ==>2

0 0 0 0 1 0 1 0

0 0 0 0 0 0 1 0

We can apply bitwise operators for boolean types also

print(True & False) ==>False


print(True | False) ===>True
print(True ^ False) ==>True
print(~True) ==>-2
print(True<<2) ==>4
print(True>>2) ==>0

Assignment Operators:
We can use assignment operator to assign value to the variable.

Eg:
x=10

We can combine asignment operator with some other operator to form compound
assignment operator.

Eg: x+=10 ====> x = x+10

The following is the list of all possible compound assignment operators in Python

+=
-=
*=
/=
%=
//=
**=
&=
|=
^=

nd
DURGASOFT, # 202, 2 Floor, HUDA Maitrivanam, Ameerpet, Hyderabad - 500038,
8  040 – 64 51 27 86, 80 96 96 96 96, 92 46 21 21 43 | [Link]

You might also like