 
      
      file::read()Read a single sequence from the opened file
file::read()There are no parameters.
number|string|boolean — Returns single sequence from the opened file. The return value is automatically converted to number, string, or boolean
import fileio
 
f = file("data.txt", file_read)
 
data1 = f.read()
data2 = f.read()
 
f.close()