Python – bytes – A quick walk through with Examples
bytes is another sequence type in Python which holds sequence of bytes. Like strings, bytes also immutable; that means, once bytes objects are created; we are NOT ALLOWED to modify its’ content. Unlike strings, where it holds sequence of Unicode characters; bytes are ALLOWED ONLY ASCII characters. Each character in a bytes object have the […]