7 lines
244 B
Python
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
|