File Python Tutorial

filePath = "input.txt"
buffer = "Read buffer:\n"
buffer += open(filePath, 'rU').read()
print buffer