The get_content function should use correct methods shown in the previous lesson to open the file read the contents of the file and then close the file and then return the contents from the function. code example
Example 1: freecodecamp python write to file
f = open("data/names.txt", "r+") # Read + Write
Example 2: freecodecamp python write to file
f = open("data/names.txt", "w+") # Read + Write