write method

write

writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.

def write(self, buffer, offset, count):
    ...
ParameterTypeDescription
bufferbytes
offsetint
countint

See Also