Tags
Language
Tags
April 2024
Su Mo Tu We Th Fr Sa
31 1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 1 2 3 4

Real Python - Binary, Bytes, and Bitwise Operators in Python

Posted By: lucky_aut
Real Python - Binary, Bytes, and Bitwise Operators in Python

Real Python - Binary, Bytes, and Bitwise Operators in Python
Duration: 1h 39m | MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch | 288 MB
Genre: eLearning | Language: English

Computers store all kinds of information as a stream of binary digits called bits. Whether you’re working with text, images, or videos, they all boil down to ones and zeros. Python’s bitwise operators let you manipulate those individual bits of data at the most granular level.

Python isolates you from the underlying bits with high-level abstractions. You’re more likely to find the overloaded flavors of bitwise operators in practice. But when you work with them in their original form, you’ll be surprised by their quirks!

In this course, you’ll learn how to:

Read binary numbers
Perform bitwise math and read truth tables
Represent fixed and arbitrary precision itegers in Python
Perform bitwise operations in Python
Use bitmasks to pack information on a single byte
Differentiate Big-Endian and Little-Endian byte orders
Overload Python bitwise operators in custom data types