Question 1: What is the purpose of using the 'with' keyword when opening a file in Python? Choice: (choose correct answer): () It ensures the file is automatically closed after it has been opened. () It allows the file to be opened in write mode. () It reads the file line by line. () It converts the file content into a list. Answer: It ensures the file is automatically closed after it has been opened.