Files
2025-05-20 11:57:43 -04:00

7 lines
244 B
Python

#!/usr/bin/env python
with open("../DATA/mystery", "rb") as mystery_in:
all_bytes = mystery_in.read()
picture_bytes = all_bytes[0::3] # get every third byte
print((picture_bytes.decode())) # decode from bytes to printable string