def read_file(filepath): with open(filepath, "r") as file: content = file.read() return content