num = [27,68,188,9]
b1 = bytes(num)
print(b1)
Output: b'\x1bD\xbc\t'
How does a t correspond to 9? Can’t get my head around this.Please help
num = [27,68,188,9]
b1 = bytes(num)
print(b1)
Output: b'\x1bD\xbc\t'
How does a t correspond to 9? Can’t get my head around this.Please help