File Python

print "\nReading the newly created file."
text_file = open("write_it.txt", "r")
print text_file.read()
text_file.close()