L1/10

Bits Make Bytes

Eight bits make one byte. This is foundational computing knowledge.

python
print(16)

Here is what the example does:

  • print(16) displays the number 16.

The assignment changes the specific values, but the basic pattern is the same.

Assignment

Complete the starter code so the program does the following:

  • Print 8.

Your finished program should print exactly this output:

text
8

Be very careful with capitalization, spaces, and line breaks. The output must match exactly.