In [1]:bytes??
Init signature:bytes(self,/,*args,**kwargs)
Docstring:bytes(iterable_of_ints)->bytesbytes(string, encoding[, errors])->bytesbytes(bytes_or_buffer)-> immutable copy of bytes_or_buffer
bytes(int)->bytesobject of size given by the parameter initialized with null bytesbytes()-> empty bytesobject
Construct an immutable array of bytesfrom:- an iterable yielding integers inrange(256)- a text string encoded using the specified encoding
-anyobject implementing the buffer API.- an integer
Type:type
Subclasses: