Practise Questions (File Handling and Paths) (Q11-20)
Duration: 6 min
This video lesson is available to enrolled students.
AI Summary
An AI-generated summary of this video lecture.
This video is a lecture on Python file handling, presented as a series of multiple-choice questions. The instructor explains the behavior of various file operations. The first question (11) demonstrates that a file opened with a 'with' statement is automatically closed. The second question (12) shows that the `writelines()` method writes a list of strings to a file, with each string on a new line, and the output is 'A\nB\nC\n'. The third question (13) clarifies the difference between `write()` (which takes a string) and `writelines()` (which takes a list of strings). The fourth question (14) explains that the `read()` method reads the entire file. The fifth question (15) states that `readline()` reads the first line. The sixth question (16) confirms that `readlines()` returns a list. The seventh question (17) shows that `len(f.readlines())` gives the line count. The eighth question (18) explains that `seek(5)` moves the file pointer to the 5th character. The ninth question (19) states that `tell()` returns the current file pointer position. The final question (20) asks for the output of `f.tell()` immediately after opening a file, which is 0, as the pointer starts at the beginning.
Chapters
0:00 – 2:00 00:00-02:00
The video begins with question 11, which asks about file closure. The code shown is `with open("x.txt", "w") as f: f.write("ABC")`. The instructor explains that when a file is opened using the `with` statement, it is automatically closed after the block of code is executed, even if an error occurs. The correct answer is B. Automatically. The instructor then moves to question 12, which presents the code `f = open("t.txt", "w")`, `f.writelines(["A\n", "B\n", "C\n"])`, `f.writelines(["A\n", "B\n", "C\n"])`, `f.close()`. The question asks for the output in the file. The instructor explains that `writelines()` writes a list of strings, and each string is written as is, so the output will be 'A\nB\nC\n'. The correct answer is C. A\nB\nC\n.
2:00 – 5:00 02:00-05:00
The instructor proceeds to question 13, which asks for the difference between `write()` and `writelines()`. The options are A. write -> list, writelines() -> string, B. writelines() -> string, C. write -> string, writelines() -> list, D. No difference. The instructor explains that `write()` takes a single string argument, while `writelines()` takes a list of strings. The correct answer is C. The next question, 14, asks what `read()` does. The code is `f = open("t.txt", "r")`, `print(f.read())`. The instructor explains that `read()` reads the entire file and returns it as a single string. The correct answer is C. Reads entire file. Question 15 asks what `readline()` reads. The code is `f = open("t.txt", "r")`, `print(f.readline())`. The instructor states that `readline()` reads the first line of the file. The correct answer is B. First line only. Question 16 asks for the output type of `readlines()`. The code is `f = open("t.txt", "r")`, `print(f.readlines())`. The instructor explains that `readlines()` returns a list of strings, where each string is a line from the file. The correct answer is C. List.
5:00 – 6:05 05:00-06:05
The video moves to question 17, which asks what `len(f.readlines())` gives. The code is `f = open("t.txt", "r")`, `print(len(f.readlines()))`. The instructor explains that `readlines()` returns a list of all lines, and `len()` returns the number of items in the list, which is the line count. The correct answer is C. Line count. Question 18 asks what `seek(5)` does. The code is `f = open("t.txt", "r")`, `f.seek(5)`, `print(f.read(3))`. The instructor explains that `seek()` moves the file pointer to a specific position, and `seek(5)` moves it to the 5th character (0-indexed). The correct answer is B. Moves to 5th character. Question 19 asks what the `tell()` method returns. The options are A. File size, B. Line number, C. Current file pointer position, D. Total characters. The instructor explains that `tell()` returns the current position of the file pointer. The correct answer is C. Current file pointer position. Finally, question 20 asks for the output of `f.tell()` just after opening a file. The code is `f = open("t.txt", "r")`, `print(f.tell())`. The instructor explains that the file pointer starts at position 0, so the output is 0. The correct answer is B. 0.
The video provides a comprehensive review of Python's file handling methods through a series of multiple-choice questions. It systematically covers the lifecycle of a file, from opening with `with` (automatic closure) to reading and writing operations. Key concepts include the difference between `write()` and `writelines()`, the behavior of `read()`, `readline()`, and `readlines()`, and the use of `seek()` and `tell()` for controlling and querying the file pointer. The instructor uses on-screen code and diagrams to clearly explain the expected output and behavior of each method, making it a practical guide for understanding file I/O in Python.