write_line method

write_line

Writes a line terminator to the text stream.

def write_line(self):
    ...

write_line

Writes the text representation of a Boolean value to the text stream, followed by a line terminator.

def write_line(self, value):
    ...
ParameterTypeDescription
valueboolA boolean value.

write_line

Writes a string to the text stream, followed by a line terminator.

def write_line(self, value):
    ...
ParameterTypeDescription
valuestrA character string.

write_line

Writes a character to the text stream, followed by a line terminator.

def write_line(self, value):
    ...
ParameterTypeDescription
valuecharA char value.

write_line

Writes an array of characters to the text stream, followed by a line terminator.

def write_line(self, buffer):
    ...
ParameterTypeDescription
bufferlistAn array of characters.

write_line

def write_line(self, value):
    ...
ParameterTypeDescription
valuedecimal

write_line

Writes the text representation of a 8-byte floating-point value to the text stream, followed by a line terminator.

def write_line(self, value):
    ...
ParameterTypeDescription
valuefloatA double value.

write_line

Writes the text representation of a 4-byte floating-point value to the text stream, followed by a line terminator.

def write_line(self, value):
    ...
ParameterTypeDescription
valuefloatA float value.

write_line

Writes the text representation of a 4-byte signed integer to the text stream, followed by a line terminator.

def write_line(self, value):
    ...
ParameterTypeDescription
valueintAn integer value.

write_line

Writes the text representation of an 8-byte signed integer to the text stream, followed by a line terminator.

def write_line(self, value):
    ...
ParameterTypeDescription
valueintA long integer value.

write_line

Writes the text representation of a 4-byte unsigned integer to the text stream, followed by a line terminator.

def write_line(self, value):
    ...
ParameterTypeDescription
valueintAn unsigned integer value.

write_line

Writes the text representation of an 8-byte unsigned integer to the text stream, followed by a line terminator.

def write_line(self, value):
    ...
ParameterTypeDescription
valueintAn unsigned long integer value.

See Also