Tester.py

import io
#The content of the text.txt is given in a separate tab
file = open("text.txt", "r")
print(file.read(9))
What is the output?
Be careful of the whitespace(space,newline) in your answer.

text.txt

I am learning Python