import io #The content of the text.txt is given in a separate tab file = open("text.txt", "r") print(file.read(9))
I am learning Python