Have basic example of opening, reading, and writing a file. Explaining the concept of context by the way. ```py with open("my_file.txt", encoding="utf-8") as f: ... ```