Result Size: 1264 x 38
x
 
x = b"Hello"
#отобразить x:
print(x)
#отобразить тип данных x:
print(type(x))
        
b'Hello'
<class 'bytes'>