+ 1
If a file write operation is successful, which one of these statements will be true?
how is the answer file.write(msg) == len(msg)
1 Respuesta
+ 8
file.write(msg) writes the contents of msg to the file, returning the number of characters written. If this return value is equal to the length of msg, this means that the entire content of msg has been successfully written to file.