Question: please answer correctly 1 The open function can be used to open an input file or create an output file. True False 2 The read

please answer correctly
1 The open function can be used to open an input file or create an output file. True False 2 The read method of a file object reads the contents of a file one line at a time. True False 3 The best way to read a file line by line is to use a for loop to iterate over the file object itself. True False 4 How do you read an integer from a text file? By calling the read_int method of the file object. By calling the read_num method of the file object. By reading it as a string and converting it to an integer. By reading it as a floating-point value and truncating it. 5 A with statement will automatically close an open file when processing is complete. True False 6 The write method adds a newline character to the end of the output. True False 7 The write method automatically adds line numbers to the output. True False
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
