Apa itu bitwise operator python?

next → ← prev

In general, Python operators are often used to handle values and arguments. This tutorial will explore a specific form of Python operator called bitwise operators. These symbols indicate conventional symbols for mathematical and logical procedures.

Bitwise Operators

Bitwise operations are processes that engage with individual bits, which are the fundamental constituent of any sort of data in a computer. A binary value of 0 or 1 is assigned to each bit. Regardless of the notion that machines can manipulate bits, machines usually store data and perform commands in bytes, which are bit multiples. Most scripting languages work with groups of 8 bits, 16 bits, or 32 bits.

Bitwise operators are characters that denote operations that are performed on single bits. A bitwise operation is executed by spatially aligning the distinct bits of two-bit patterns of the same size.

Bitwise Operators in Python

Bitwise operators are employed in python to perform bitwise operations on numbers. The values are first converted to binary, and then manipulations are done bit by bit, hence the phrase "bitwise operators." The outcome is then displayed in decimal numbers.

Bitwise Logical Operator: These operators are employed to execute logical operations like other logical operators bit by bit. This is akin to using logical operators such as and, or, and not on a bit level. Except for these basic facts, bitwise and logical operators are analogous.

Bitwise Shift Operators: These operators multiply or divide an integer number by two by shifting every individual bit to the left or right. We can use them when we wish to multiply or divide a value by a power of 2. Python's bitwise operators only work with integers.

OperatorDescription
& Binary AND TThe operator sends the bit present in both operands to the output.
| Binary OR TIf a bit is present in either operand, it is copied.
^ Binary XOR TIt is copied if the bit is set inside one argument but not both.
~ Binary Ones Complement TIt has the function of 'flipping' bits and is unary.
> 1 = 13 y >> 1 = -13

Bitwise Left Shift

As a result of the operation, the individual bits of the integer to the left are filled with 0 on the voids to the right. The result is similar to multiplying a value by a power of 2.

Code

Output:

x 

Bài mới nhất

Chủ Đề