bytes |
| class bytes(source, encoding, errors) |
Returns a new bytes object between 0 and 256 (built-in). |
| source | ?? |
| encoding | ?? |
| errors | ?? |
| REMARKS |
| * No prefix required - Core * Return a new "bytes" object which is an immutable sequence of integers in the range 0 <= x < 256. bytes is an immutable version of bytearray - it has the same non-mutating methods and the same indexing and slicing behavior. * Accordingly, constructor arguments are interpreted as for bytearray(). * Bytes objects can also be created with literals, see String and Bytes literals. * For the Official documentation refer to python.org |
??
© 2026 Better Solutions Limited. All Rights Reserved. © 2026 Better Solutions Limited Top