Python For Human Beings by Cesar Aracena & Jose Orozco

Python For Human Beings by Cesar Aracena & Jose Orozco

Author:Cesar Aracena & Jose Orozco [Aracena, Cesar]
Language: eng
Format: mobi
Published: 2022-04-22T00:00:00+00:00


x *= 2

x = x * 2

/=

x /= 2

x = x / 2

%=

x %= 2

x = x % 2

//=

x //= 2

x = x // 2

**=

x **= 2

x = x ** 2

Bitwise Operators

Operator

Name

Example

&

AND

x & y = 0

|

OR

x | y = 10

~

NOT

~x = -10

^

XOR

x ^ y = 10

>>

Right Shift

x << 2 = 10

<<

Left Shift

x >> 2 = 150

Membership Operators

Operator

Use

Example

in

True if value is found in the object

x in y

not in



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.