How to recover bytes function?

satishmlmlml at gmail.com satishmlmlml at gmail.com
Thu Nov 13 17:32:34 EST 2014


file = open('data.bin', 'rb')
bytes = file.read()
bytes
b'\x00\x00\x00\x02spam\x00\x03?\x9d\xf3\xb6'
records = [bytes([char] * 8) for char in b'spam']
TypeError: 'bytes' object is not callable

How to recover bytes function?



More information about the Python-list mailing list