Closed alex-eri closed 8 years ago
list(b'123') is [49, 50, 51] on python3, but ['1', '2', '3'] on python2. bytes and bytearray is prefered for working with bytes.
list(b'123') is [49, 50, 51] on python3, but ['1', '2', '3'] on python2. bytes and bytearray is prefered for working with bytes.