Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python bufferedreader

import io
    
path = "enter the path here" 

with io.open(path, "r") as f:
    # Read 5 bytes
    print(f.read(5))
 
PREVIOUS NEXT
Tagged: #python #bufferedreader
ADD COMMENT
Topic
Name
5+5 =