Descripción
Método de archivo Python tell() devuelve la posición actual del puntero de lectura / escritura del archivo dentro del archivo.
Sintaxis
A continuación se muestra la sintaxis de tell() método -
fileObject.tell()
Parámetros
Valor devuelto
Este método devuelve la posición actual del puntero de lectura / escritura del archivo dentro del archivo.
Ejemplo
El siguiente ejemplo muestra el uso del método tell ().
This is 1st line
This is 2nd line
This is 3rd line
This is 4th line
This is 5th line
#!/usr/bin/python
# Open a file
fo = open("foo.txt", "rw+")
print "Name of the file: ", fo.name
# Assuming file has following 5 lines
# This is 1st line
# This is 2nd line
# This is 3rd line
# This is 4th line
# This is 5th line
line = fo.readline()
print "Read Line: %s" % (line)
# Get the current position of the file.
pos = fo.tell()
print "Current Position: %d" % (pos)
# Close opend file
fo.close()
Cuando ejecutamos el programa anterior, produce el siguiente resultado:
Name of the file: foo.txt
Read Line: This is 1st line
Current Position: 28