I open a file in python by
f = open('filename' , mode='rb')
how can I tell if I am at the end of file?
f.eof() isn't implmented.
How can I implement its functionallity?
Thanks.
B.
f = open('filename' , mode='rb')
how can I tell if I am at the end of file?
f.eof() isn't implmented.
How can I implement its functionallity?
Thanks.
B.
Comment