On Sat, 12 Dec 2009 22:15:50 -0800, daved170 wrote:

> Thank you all.
> Dennis I really liked you solution for the issue but I have two question
> about it:
> 1) My origin file is Text file and not binary 

That's a statement, not a question.


> 2) I need to read each time 1 byte.

f = open(filename, 'r')  # open in text mode
f.read(1)  # read one byte


-- 
Steven
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to