А
Size: a a a
БГ
$
$
AT
AT
AT
<Ч
<Ч
AT
БГ
$
py3
print(1)
1
БГ
str.split() -> int(substr, 2) -> bytes(ints_list) -> chardet.detect(bytes) -> bytes.decode({$encoding})
БГ
str.split() -> int(substr, 2) -> bytes(ints_list) -> chardet.detect(bytes) -> bytes.decode({$encoding})
s = "11001100 11001110 11001011 11001110 11000100 11000101 11010110"
nums = [int(s_, 2) for s_ in s.split()]
b = bytes(nums)
print(b.decode('koi8-r'))
AT
s = "11001100 11001110 11001011 11001110 11000100 11000101 11010110"
nums = [int(s_, 2) for s_ in s.split()]
b = bytes(nums)
print(b.decode('koi8-r'))
БГ
БГ
БГ
БГ