Reading a File : Tell : File PYTHON TUTORIALS


PYTHON TUTORIALS » File » Tell »

 

Reading a File


f = open("test.txt""rb")      
f.tell()                                  
f.seek(-1282)                                
print f.tell()                                      
tagData = f.read(128)                           
print tagData 
print f.tell()



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo File
» Tell