data = list(f.read(4))
print data

from a binary file might give

['\x10', '\x20', '\x12', '\x01']


How can I receive this instead?

[0x10, 0x20, 0x12, 0x01]

Thanks for all help!

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to