As the title says, I would like to use a simple command to make Python read the next line of a text file.
For example something like this:
users = open("C:\\Users\\Tharix\\Desktop\\test.txt",mode="r")
line = test.readline(20)
print(line)
line.next() #Or something similar
print(line)
(PS: I don't know this helps, but I'm using version 3.3.2 of Python)