def file_read(path): handle = open(path, "r") content = handle.read() handle.close() return content