Reading a binary File : File Binary : File PYTHON examples


PYTHON examples » File » File Binary »

 

Reading a binary File




f = open("/music/_singles/kairo.mp3""rb")        

print f

print f.tell()                                     

f.seek(-1282)                                    
print f.tell()                                     

tagData = f.read(128)                              
print tagData 

print f.tell()                                     

           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


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


PYTHON examples

 Navioo File
» File Binary