About
Byte (Bit Octet) - Computer storage Unit (8bit) in Python
Empty byte
b''
Articles Related
To
toString
- Python 2
encoding = 'utf-8'
'nico'.decode(encoding)
# or
unicode('nico', encoding)
- Python 3
encoding = 'utf-8'
str(b'nico', encoding)
# or
b'hello'.decode(encoding)