Reading content of text file

What is text file?

with open('file.txt') as file_object:
content=file_object.read()
print(content)