I did checkpoint 1 where I created 2 variable a and b.

a stored the bits 11110000 and b stored the bits 10101010.
This commit is contained in:
juddin22
2026-03-22 20:38:23 -04:00
parent d499f4dbc3
commit f4d8ce20a5
2 changed files with 154 additions and 0 deletions

View File

@@ -6,6 +6,10 @@ Create the following variables.
a = Bits("11110000")
b = Bits("10101010")
```
print(a)
11110000
print(b)
10101010
For each of the following bytes, give an equivalent
expression which uses only `a`, `b`, and bit operators.