Python ReadLines Fin del archivo

with open('somefile') as openfileobject:
    for line in openfileobject:
        do_something()
Arrogant Ant